diff options
Diffstat (limited to 'muggle-plugin/mg_database.c')
-rw-r--r-- | muggle-plugin/mg_database.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/muggle-plugin/mg_database.c b/muggle-plugin/mg_database.c new file mode 100644 index 0000000..9a85cb8 --- /dev/null +++ b/muggle-plugin/mg_database.c @@ -0,0 +1,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; +} + + |