2007-08-04 12:08:10 +00:00
|
|
|
//
|
|
|
|
|
// C++ Interface: clientberofactory
|
|
|
|
|
//
|
|
|
|
|
// Description:
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#ifndef CLIENTBEROFACTORY_H
|
|
|
|
|
#define CLIENTBEROFACTORY_H
|
|
|
|
|
|
2007-08-06 20:35:26 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
2007-08-04 12:08:10 +00:00
|
|
|
#include <berofactoryinterface.h>
|
2007-08-04 21:30:20 +00:00
|
|
|
#include <handinterface.h>
|
2007-08-04 12:08:10 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@author FThauer FHammer <webmaster@pokerth.net>
|
|
|
|
|
*/
|
|
|
|
|
class ClientBeRoFactory : public BeRoFactoryInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
2007-08-04 22:05:12 +00:00
|
|
|
ClientBeRoFactory(HandInterface* hi, int id, int aP, int dP, int sB);
|
2007-08-04 12:08:10 +00:00
|
|
|
|
|
|
|
|
~ClientBeRoFactory();
|
|
|
|
|
|
2007-08-05 23:57:16 +00:00
|
|
|
BeRoInterface* switchRounds(BeRoInterface*, int);
|
|
|
|
|
|
|
|
|
|
BeRoInterface* createBeRoPreflop();
|
2007-08-04 21:30:20 +00:00
|
|
|
|
2007-08-06 20:35:26 +00:00
|
|
|
std::vector<boost::shared_ptr<BeRoInterface> > createBeRo();
|
|
|
|
|
|
2007-08-04 12:08:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|