summaryrefslogtreecommitdiff
path: root/src/data/con_base.h
blob: 16086dbcbb1de3a01545f6b98fec2e1873adfd88 (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