more polymorphie steps for BeRo

This commit is contained in:
doitux
2007-08-04 12:08:10 +00:00
parent 421ca6c62d
commit 1f00b3f458
12 changed files with 179 additions and 2 deletions
+2
View File
@@ -28,6 +28,7 @@
#include "turninterface.h"
#include "riverinterface.h"
#include "berointerface.h"
#include "berofactoryinterface.h"
#include <boost/shared_ptr.hpp>
@@ -45,6 +46,7 @@ public:
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;
virtual BeRoFactoryInterface* createBeRoFactory() =0;
};
#endif