2007-08-04 01:30:59 +00:00
|
|
|
//
|
|
|
|
|
// C++ Interface: localbero
|
|
|
|
|
//
|
|
|
|
|
// Description:
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#ifndef LOCALBERO_H
|
|
|
|
|
#define LOCALBERO_H
|
|
|
|
|
|
|
|
|
|
#include "berointerface.h"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@author FThauer FHammer <webmaster@pokerth.net>
|
|
|
|
|
*/
|
|
|
|
|
class LocalBeRo : public BeRoInterface{
|
|
|
|
|
public:
|
|
|
|
|
LocalBeRo();
|
|
|
|
|
|
|
|
|
|
~LocalBeRo();
|
|
|
|
|
|
2007-08-05 13:07:23 +00:00
|
|
|
int getMyBeRoID() const { return myBeRoID; }
|
2007-08-05 23:57:16 +00:00
|
|
|
|
2007-08-06 09:50:54 +00:00
|
|
|
int getHighestCardsValue() const {}
|
2007-08-05 23:57:16 +00:00
|
|
|
void setHighestCardsValue(int theValue) {}
|
2007-08-05 13:07:23 +00:00
|
|
|
|
2007-08-05 23:57:16 +00:00
|
|
|
//only until bero refactory is over
|
|
|
|
|
void preflopRun() {}
|
|
|
|
|
void flopRun() {}
|
|
|
|
|
void riverRun() {}
|
|
|
|
|
void turnRun() {}
|
|
|
|
|
void postRiverRun() {}
|
|
|
|
|
|
|
|
|
|
void resetFirstRun() {}
|
|
|
|
|
|
2007-08-05 13:07:23 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
int myBeRoID;
|
|
|
|
|
|
2007-08-04 01:30:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|