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