path to UTF8
configfile split
This commit is contained in:
+8
-1
@@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user