summaryrefslogtreecommitdiff
path: root/src/data/con.h
blob: 9fda07b457da0e11be30abf0fb6a48a36e71d0be (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