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

#ifdef DATABASE
#ifndef CON_BASE_CPP
#define CON_BASE_CPP

using namespace std;

con_base::con_base()
{
 renew_timeout( );
}

con_base::~con_base()
{
}


#endif
#endif