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

#ifndef CON_H
#define CON_H

#include <mysql/mysql.h> 
#include <iostream>
#include "con_base.h"

using namespace std;

class con : public con_base
{
public:
 MYSQL* p_mysql;
 con( );
 ~con( );
};

#endif
#endif