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