more polymorphie steps for BeRo - local game --> unstable

This commit is contained in:
doitux
2007-08-04 21:30:20 +00:00
parent 1f00b3f458
commit 07f8a2aaeb
19 changed files with 87 additions and 45 deletions
+10 -1
View File
@@ -13,6 +13,9 @@
#define LOCALBEROFACTORY_H
#include <berofactoryinterface.h>
#include <berointerface.h>
#include <handinterface.h>
#include <localberopreflop.h>
/**
@author FThauer FHammer <webmaster@pokerth.net>
@@ -20,10 +23,16 @@
class LocalBeRoFactory : public BeRoFactoryInterface
{
public:
LocalBeRoFactory();
LocalBeRoFactory(HandInterface* hi);
~LocalBeRoFactory();
BeRoInterface* switchRounds();
private:
HandInterface* myHand;
};
#endif