Fixed linefeed.

This commit is contained in:
lotodore
2007-05-13 17:51:52 +00:00
parent 37bf6e4eb9
commit 60eb04a920
2 changed files with 20 additions and 20 deletions
+10 -10
View File
@@ -36,16 +36,16 @@ GenericServerGui::~GenericServerGui()
void GenericServerGui::initGui(int speed) void GenericServerGui::initGui(int speed)
{ {
} }
Session &GenericServerGui::getSession() Session &GenericServerGui::getSession()
{ {
return *mySession; return *mySession;
} }
void GenericServerGui::setSession(boost::shared_ptr<Session> session) void GenericServerGui::setSession(boost::shared_ptr<Session> session)
{ {
mySession = session; mySession = session;
} }
void GenericServerGui::waitForNetworkAction(GameState state, unsigned uniquePlayerId) void GenericServerGui::waitForNetworkAction(GameState state, unsigned uniquePlayerId)
{ {
+10 -10
View File
@@ -20,10 +20,10 @@
#define GENERICSERVERGUI_H #define GENERICSERVERGUI_H
#include <game_defs.h> #include <game_defs.h>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
class Session; class Session;
class ConfigFile; class ConfigFile;
class GenericServerGui class GenericServerGui
{ {
@@ -33,16 +33,16 @@ public:
~GenericServerGui(); ~GenericServerGui();
void initGui(int speed); void initGui(int speed);
Session &getSession(); Session &getSession();
void setSession(boost::shared_ptr<Session> session); void setSession(boost::shared_ptr<Session> session);
void waitForNetworkAction(GameState state, unsigned uniquePlayerId); void waitForNetworkAction(GameState state, unsigned uniquePlayerId);
private: private:
boost::shared_ptr<Session> mySession; boost::shared_ptr<Session> mySession;
ConfigFile *myConfig; ConfigFile *myConfig;
}; };
#endif #endif