blob: 9a85cb8105fe0b0f9fb540c9bfd1247b39bb5f40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*******************************************************************/
/*! \file mg_database.c
* \brief A capsule around MySql database access
********************************************************************
* \version $Revision: 1.1 $
* \date $Date: 2004/02/01 18:22:53 $
* \author Ralf Klueber, Lars von Wedel, Andreas Kellner
* \author file owner: $Author: LarsAC $
*/
/*******************************************************************/
#include "mg_database.h"
using namespace std;
mgDB::mgDB()
{
}
mgDB::mgDB(string user, string pass)
{
}
mgDB::~mgDB()
{
}
MYSQL mgDB::getDBHandle()
{
MYSQL m;
return m;
}
|