std::vector<boost::shared_ptr<BeRoInterface> > implemented

This commit is contained in:
doitux
2007-08-06 20:35:26 +00:00
parent 562e8760f5
commit 96419b3588
22 changed files with 172 additions and 139 deletions
+10 -10
View File
@@ -84,34 +84,34 @@ ClientHand::getBoard() const
return myBoard;
}
BeRoInterface*
boost::shared_ptr<BeRoInterface>
ClientHand::getPreflop() const
{
return myBeRo;
return myBeRo[actualRound];
}
BeRoInterface*
boost::shared_ptr<BeRoInterface>
ClientHand::getFlop() const
{
return myBeRo;
return myBeRo[actualRound];
}
BeRoInterface*
boost::shared_ptr<BeRoInterface>
ClientHand::getTurn() const
{
return myBeRo;
return myBeRo[actualRound];
}
BeRoInterface*
boost::shared_ptr<BeRoInterface>
ClientHand::getRiver() const
{
return myBeRo;
return myBeRo[actualRound];
}
BeRoInterface*
boost::shared_ptr<BeRoInterface>
ClientHand::getCurrentBeRo() const
{
return myBeRo;
return myBeRo[actualRound];
}