2007-08-04 12:08:10 +00:00
|
|
|
//
|
|
|
|
|
// C++ Interface: localberofactory
|
|
|
|
|
//
|
|
|
|
|
// Description:
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#ifndef LOCALBEROFACTORY_H
|
|
|
|
|
#define LOCALBEROFACTORY_H
|
|
|
|
|
|
|
|
|
|
#include <berofactoryinterface.h>
|
2007-08-04 21:30:20 +00:00
|
|
|
#include <berointerface.h>
|
|
|
|
|
#include <handinterface.h>
|
|
|
|
|
#include <localberopreflop.h>
|
2007-08-04 12:08:10 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@author FThauer FHammer <webmaster@pokerth.net>
|
|
|
|
|
*/
|
|
|
|
|
class LocalBeRoFactory : public BeRoFactoryInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
2007-08-04 21:30:20 +00:00
|
|
|
LocalBeRoFactory(HandInterface* hi);
|
2007-08-04 12:08:10 +00:00
|
|
|
|
|
|
|
|
~LocalBeRoFactory();
|
|
|
|
|
|
2007-08-04 21:30:20 +00:00
|
|
|
BeRoInterface* switchRounds();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
HandInterface* myHand;
|
|
|
|
|
|
2007-08-04 12:08:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|