2007-08-04 12:08:10 +00:00
|
|
|
//
|
|
|
|
|
// C++ Implementation: localberofactory
|
|
|
|
|
//
|
2007-08-04 21:30:20 +00:00
|
|
|
// Description:
|
2007-08-04 12:08:10 +00:00
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#include "localberofactory.h"
|
|
|
|
|
|
2007-08-04 22:05:12 +00:00
|
|
|
LocalBeRoFactory::LocalBeRoFactory (HandInterface* hi, int id, int aP, int dP, int sB)
|
|
|
|
|
: BeRoFactoryInterface() , myHand(hi), myID(id), actualQuantityPlayers(aP), dealerPosition(dP), smallBlind(sB)
|
2007-08-04 21:30:20 +00:00
|
|
|
{}
|
2007-08-04 12:08:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
LocalBeRoFactory::~LocalBeRoFactory()
|
2007-08-04 21:30:20 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
BeRoInterface* LocalBeRoFactory::switchRounds()
|
2007-08-04 12:08:10 +00:00
|
|
|
{
|
2007-08-04 21:30:20 +00:00
|
|
|
|
|
|
|
|
BeRoInterface* myBeRo = 0;
|
|
|
|
|
|
|
|
|
|
myBeRo = new LocalBeRoPreflop ( myHand, 0, 7, 0, 10 );
|
|
|
|
|
|
|
|
|
|
return myBeRo;
|
2007-08-04 12:08:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-04 21:30:20 +00:00
|
|
|
|