Set small/big blind position id on client.
This commit is contained in:
@@ -97,12 +97,26 @@ ClientBeRo::getLastPlayersTurnIt() const
|
||||
return lastPlayersTurnIt;
|
||||
}
|
||||
|
||||
void
|
||||
ClientBeRo::setSmallBlindPositionId(unsigned theValue)
|
||||
{
|
||||
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
|
||||
smallBlindPositionId = theValue;
|
||||
}
|
||||
|
||||
unsigned
|
||||
ClientBeRo::getSmallBlindPositionId() const
|
||||
{
|
||||
return smallBlindPositionId;
|
||||
}
|
||||
|
||||
void
|
||||
ClientBeRo::setBigBlindPositionId(unsigned theValue)
|
||||
{
|
||||
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
|
||||
bigBlindPositionId = theValue;
|
||||
}
|
||||
|
||||
unsigned
|
||||
ClientBeRo::getBigBlindPositionId() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user