remove configFile from Log

This commit is contained in:
floty
2011-01-03 17:56:06 +00:00
parent a0f91b04c7
commit 924d6a38b7
3 changed files with 15 additions and 11 deletions
+3 -3
View File
@@ -22,9 +22,9 @@
#include <boost/shared_ptr.hpp>
#include <list>
#include <iostream>
struct sqlite3;
class ConfigFile;
class PlayerInterface;
typedef boost::shared_ptr<std::list<boost::shared_ptr<PlayerInterface> > > PlayerList;
@@ -35,7 +35,7 @@ class Log
{
public:
Log(ConfigFile *c);
Log(std::string logDirString, int logOnOffInt);
~Log();
@@ -45,9 +45,9 @@ public:
private:
ConfigFile *myConfig;
sqlite3 *mySqliteLogDb;
int curGameID;
bool logOnOff;
};