implementing first function in new log.cpp

This commit is contained in:
floty
2010-12-17 23:18:30 +00:00
parent ba155d0f90
commit 4f89969bd3
6 changed files with 148 additions and 106 deletions
+15 -1
View File
@@ -20,10 +20,24 @@
#ifndef LOG_H
#define LOG_H
#include <sqlite3.h>
#include <dirent.h>
#include "configfile.h"
#include "game_defs.h"
class Log
{
public:
Log();
Log(ConfigFile *c);
~Log();
private:
ConfigFile *myConfig;
sqlite3 *mySqliteLogDb;
};
#endif // LOG_H