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