34 lines
539 B
C++
34 lines
539 B
C++
//
|
|
// C++ Implementation: localberofactory
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#include "localberofactory.h"
|
|
|
|
LocalBeRoFactory::LocalBeRoFactory ( HandInterface* hi )
|
|
: BeRoFactoryInterface() , myHand ( hi )
|
|
{}
|
|
|
|
|
|
LocalBeRoFactory::~LocalBeRoFactory()
|
|
{}
|
|
|
|
BeRoInterface* LocalBeRoFactory::switchRounds()
|
|
{
|
|
|
|
BeRoInterface* myBeRo = 0;
|
|
|
|
myBeRo = new LocalBeRoPreflop ( myHand, 0, 7, 0, 10 );
|
|
|
|
return myBeRo;
|
|
}
|
|
|
|
|
|
|