mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@158 e03df62e-2008-0410-955e-edbf42e46eb7
23 lines
207 B
C++
23 lines
207 B
C++
/*
|
|
|
|
|
|
*/
|
|
|
|
#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
|
|
|