27 lines
368 B
C++
27 lines
368 B
C++
//
|
|||
|
|
// 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
|
||
|
|
|
||
|
|
/**
|
||
|
|
@author FThauer FHammer <webmaster@pokerth.net>
|
||
|
|
*/
|
||
|
|
class ClientBeRo{
|
||
|
|
public:
|
||
|
|
ClientBeRo();
|
||
|
|
|
||
|
|
~ClientBeRo();
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|