00001 /* 00002 00003 00004 */ 00005 00006 #include "inspircd_config.h" 00007 #include <time.h> 00008 00009 #ifndef __BASE_H__ 00010 #define __BASE_H__ 00011 00012 00015 class classbase 00016 { 00017 public: 00020 time_t age; 00021 00025 classbase() { age = time(NULL); } 00026 ~classbase() { } 00027 }; 00028 00029 #endif 00030