summaryrefslogtreecommitdiff
path: root/include/base.h
blob: c347aedb30edc93b4318075a7adeb0341a15b3c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*


*/

#include "inspircd_config.h" 
#include <time.h>
 
#ifndef __BASE_H__ 
#define __BASE_H__ 
 
class classbase
{
 public:
	time_t age;

	classbase() { age = time(NULL); }
	~classbase() { }
};

#endif