Back to rev. 347

This commit is contained in:
lotodore
2007-04-20 23:14:08 +00:00
parent 57927b7d73
commit a8cce94d3b
32 changed files with 315 additions and 333 deletions
+1 -8
View File
@@ -30,12 +30,10 @@ class ServerThread;
class Session{
public:
Session();
Session(GuiInterface*);
~Session();
void setGuiInterface(GuiInterface *gui) { myGui = gui; }
void startGame(int, int, int);
void deleteGame();
@@ -50,9 +48,6 @@ 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:
@@ -66,8 +61,6 @@ private:
GuiInterface *myGui;
ConfigFile *myConfig;
std::string configPath;
};