path to UTF8

configfile split
This commit is contained in:
doitux
2007-04-18 00:11:24 +00:00
parent 27cd08ccb0
commit 2b94ce958f
33 changed files with 565 additions and 498 deletions
+8 -1
View File
@@ -30,10 +30,12 @@ class ServerThread;
class Session{
public:
Session(GuiInterface*);
Session();
~Session();
void setGuiInterface(GuiInterface *gui) { myGui = gui; }
void startGame(int, int, int);
void deleteGame();
@@ -48,6 +50,9 @@ public:
void setActualGameID(const int& theValue) { actualGameID = theValue; }
int getActualGameID() const { return actualGameID; }
void setConfigPath(const std::string& theValue) { configPath = theValue; }
std::string getConfigPath() const { return configPath; }
// void createConfig();
private:
@@ -61,6 +66,8 @@ private:
GuiInterface *myGui;
ConfigFile *myConfig;
std::string configPath;
};