more polymorphie steps for BeRo

This commit is contained in:
doitux
2007-08-04 11:37:26 +00:00
parent 993465a213
commit 421ca6c62d
7 changed files with 21 additions and 3 deletions
+2 -1
View File
@@ -27,6 +27,7 @@
#include "flopinterface.h"
#include "turninterface.h"
#include "riverinterface.h"
#include "berointerface.h"
#include <boost/shared_ptr.hpp>
@@ -43,7 +44,7 @@ public:
virtual FlopInterface* createFlop(HandInterface* hi, int id, int aP, int dP, int sB) =0;
virtual TurnInterface* createTurn(HandInterface* hi, int id, int aP, int dP, int sB) =0;
virtual RiverInterface* createRiver(HandInterface* hi, int id, int aP, int dP, int sB) =0;
virtual BeRoInterface* createBeRo() =0;
};
#endif