Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

base.h

Go to the documentation of this file.
00001 /*
00002 
00003 $Log$
00003 Revision 1.3  2003/01/27 00:28:57  brain
00003 ...
00003 
00004 Revision 1.1  2003/01/26 23:52:59  brain
00005 Modified documentation for base classes
00006 Added base classes
00007 
00008 
00009 */
00010 
00011 #include "inspircd_config.h" 
00012 #include <time.h>
00013  
00014 #ifndef __BASE_H__ 
00015 #define __BASE_H__ 
00016  
00017 class classbase
00018 {
00019  public:
00020         time_t age;
00021 
00022         classbase() { age = time(NULL); }
00023         ~classbase() { }
00024 };
00025 
00026 #endif
00027 

Generated on Mon Jan 27 00:23:10 2003 for InspIRCd by doxygen1.3-rc2