2007-08-04 01:30:59 +00:00
|
|
|
//
|
|
|
|
|
// C++ Interface: clientbero
|
|
|
|
|
//
|
|
|
|
|
// Description:
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
|
|
|
//
|
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
#ifndef CLIENTBERO_H
|
|
|
|
|
#define CLIENTBERO_H
|
|
|
|
|
|
2007-08-06 20:35:26 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
2007-08-04 11:37:26 +00:00
|
|
|
#include "berointerface.h"
|
|
|
|
|
|
|
|
|
|
|
2007-08-04 01:30:59 +00:00
|
|
|
/**
|
|
|
|
|
@author FThauer FHammer <webmaster@pokerth.net>
|
|
|
|
|
*/
|
2007-08-04 11:37:26 +00:00
|
|
|
class ClientBeRo : public BeRoInterface{
|
2007-08-04 01:30:59 +00:00
|
|
|
public:
|
|
|
|
|
ClientBeRo();
|
|
|
|
|
|
|
|
|
|
~ClientBeRo();
|
|
|
|
|
|
2007-08-05 13:07:23 +00:00
|
|
|
int getMyBeRoID() const { return myBeRoID; }
|
|
|
|
|
|
2007-08-06 20:35:26 +00:00
|
|
|
void run() {}
|
|
|
|
|
|
2007-08-05 13:07:23 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
int myBeRoID;
|
|
|
|
|
|
2007-08-04 01:30:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|