27 lines
386 B
C++
27 lines
386 B
C++
//
|
|
// C++ Interface: berointerface
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef BEROINTERFACE_H
|
|
#define BEROINTERFACE_H
|
|
|
|
/**
|
|
@author FThauer FHammer <webmaster@pokerth.net>
|
|
*/
|
|
class BeRoInterface{
|
|
public:
|
|
BeRoInterface();
|
|
|
|
~BeRoInterface();
|
|
|
|
};
|
|
|
|
#endif
|