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)
{
}
Session &GenericServerGui::getSession()
{
return *mySession;
}
void GenericServerGui::setSession(boost::shared_ptr<Session> session)
{
mySession = session;
}
Session &GenericServerGui::getSession()
{
return *mySession;
}
void GenericServerGui::setSession(boost::shared_ptr<Session> session)
{
mySession = session;
}
void GenericServerGui::waitForNetworkAction(GameState state, unsigned uniquePlayerId)
{
+10 -10
View File
@@ -20,10 +20,10 @@
#define GENERICSERVERGUI_H
#include <game_defs.h>
#include <boost/shared_ptr.hpp>
#include <boost/shared_ptr.hpp>
class Session;
class ConfigFile;
class Session;
class ConfigFile;
class GenericServerGui
{
@@ -33,16 +33,16 @@ public:
~GenericServerGui();
void initGui(int speed);
Session &getSession();
void setSession(boost::shared_ptr<Session> session);
Session &getSession();
void setSession(boost::shared_ptr<Session> session);
void waitForNetworkAction(GameState state, unsigned uniquePlayerId);
private:
boost::shared_ptr<Session> mySession;
ConfigFile *myConfig;
private:
boost::shared_ptr<Session> mySession;
ConfigFile *myConfig;
};
#endif