mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-01 02:15:54 -04:00
try some more stuff
This commit is contained in:
+1
-1
@@ -95,7 +95,7 @@ public:
|
||||
unsigned submitRequest(GenericRequest *req, GenericResponse *res);
|
||||
GenericConnection *getNextActiveConnection();
|
||||
std::string &getGameCode() { return m_game; }
|
||||
void addIdentifier(std::string id) { m_gameIdentifiers.push_back(id);}
|
||||
void addIdentifier(const std::string &id) { m_gameIdentifiers.push_back(id);}
|
||||
|
||||
protected:
|
||||
std::vector<GenericConnection *> m_serverConnections;
|
||||
|
||||
+2
-2
@@ -36,9 +36,9 @@ public:
|
||||
unsigned getID() const { return m_id; }
|
||||
std::string getData() const { return m_XMLdata; }
|
||||
|
||||
void setName(const std::string name) { m_name = name; }
|
||||
void setName(const std::string &name) { m_name = name; }
|
||||
void setID(unsigned id) { m_id = id; }
|
||||
void setData(const std::string data) { m_XMLdata = data; }
|
||||
void setData(const std::string &data) { m_XMLdata = data; }
|
||||
|
||||
protected:
|
||||
std::string m_name;
|
||||
|
||||
Reference in New Issue
Block a user