std:array ?
This commit is contained in:
@@ -402,13 +402,13 @@ SessionData::GetPlayerData()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SessionData::SetPlayerLastGames(Array<long, 25> lastGames)
|
SessionData::SetPlayerLastGames(std:array<long, 25> lastGames)
|
||||||
{
|
{
|
||||||
boost::mutex::scoped_lock lock(m_dataMutex);
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
m_lastGames = player;
|
m_lastGames = player;
|
||||||
}
|
}
|
||||||
|
|
||||||
Array<long, 25>
|
std::array<long, 25>
|
||||||
SessionData::GetPlayerLastGames()
|
SessionData::GetPlayerLastGames()
|
||||||
{
|
{
|
||||||
boost::mutex::scoped_lock lock(m_dataMutex);
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
|
|||||||
@@ -127,8 +127,8 @@ public:
|
|||||||
void SetPlayerData(boost::shared_ptr<PlayerData> player);
|
void SetPlayerData(boost::shared_ptr<PlayerData> player);
|
||||||
boost::shared_ptr<PlayerData> GetPlayerData();
|
boost::shared_ptr<PlayerData> GetPlayerData();
|
||||||
|
|
||||||
void SetPlayerLastGames(Array<long, 25> lastGames);
|
void SetPlayerLastGames(std::array<long, 25> lastGames);
|
||||||
Array<long, 25> GetPlayerLastGames();
|
std::array<long, 25> GetPlayerLastGames();
|
||||||
|
|
||||||
std::string GetRemoteIPAddressFromSocket() const;
|
std::string GetRemoteIPAddressFromSocket() const;
|
||||||
|
|
||||||
@@ -163,7 +163,7 @@ private:
|
|||||||
std::string m_password;
|
std::string m_password;
|
||||||
boost::shared_ptr<PlayerData> m_playerData;
|
boost::shared_ptr<PlayerData> m_playerData;
|
||||||
|
|
||||||
Array<long, 25> m_lastGames;
|
std::array<long, 25> m_lastGames;
|
||||||
|
|
||||||
mutable boost::mutex m_dataMutex;
|
mutable boost::mutex m_dataMutex;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user