summaryrefslogtreecommitdiff
path: root/src/data/con_base.h
blob: 60b12c2fc950d8756a1f482898519770d374b5c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "../incl.h"
#ifdef DATABASE

#ifndef CON_BASE_H
#define CON_BASE_H

#include "../time/timo.h"

using namespace std;

class con_base : public timo
{
public:
    con_base( );
    ~con_base( );
};

#endif
#endif