ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Root Listing
root
/
cvsroot
/
COMP
/
DBS
/
Servers
/
AppServer
/
include
/
Log.hpp
Revision:
1.1
Committed:
Mon Oct 31 22:10:36 2005 UTC
(19 years, 6 months ago) by
afaq
Branch point for:
v00, MAIN
Log Message:
Initial revision
File Contents
#
User
Rev
Content
1
afaq
1.1
#ifndef _Log_hpp_included_
2
#define _Log_hpp_included_
3
#include <log4cxx/logger.h>
4
#include <string>
5
6
class Log {
7
private:
8
log4cxx::LoggerPtr logger;
9
public:
10
Log(std::string className);
11
~Log();
12
log4cxx::LoggerPtr getLogger();
13
};
14
#endif
15