00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00016 #ifndef _LOG4CPLUS_HELPERS_LOGLOG_USER
00017 #define _LOG4CPLUS_HELPERS_LOGLOG_USER
00018
00019 #include <log4cplus/config.h>
00020
00021
00022 namespace log4cplus {
00023 namespace helpers {
00024
00025 class LogLog;
00026
00032 class LOG4CPLUS_EXPORT LogLogUser {
00033 public:
00034
00035 LogLogUser();
00036 LogLogUser(const LogLogUser&);
00037 virtual ~LogLogUser();
00038
00039
00040 LogLog& getLogLog() const;
00041
00042
00043 LogLogUser& operator=(const LogLogUser& rhs);
00044
00045 private:
00046
00047 void* loglogRef;
00048 };
00049
00050 }
00051 }
00052
00053
00054 #endif // _LOG4CPLUS_HELPERS_LOGLOG_USER
00055