25 lines
348 B
C++
25 lines
348 B
C++
//
|
|||
|
|
// C++ Implementation: localberofactory
|
||
|
|
//
|
||
|
|
// Description:
|
||
|
|
//
|
||
|
|
//
|
||
|
|
// Author: FThauer FHammer <webmaster@pokerth.net>, (C) 2007
|
||
|
|
//
|
||
|
|
// Copyright: See COPYING file that comes with this distribution
|
||
|
|
//
|
||
|
|
//
|
||
|
|
#include "localberofactory.h"
|
||
|
|
|
||
|
|
LocalBeRoFactory::LocalBeRoFactory()
|
||
|
|
: BeRoFactoryInterface()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
LocalBeRoFactory::~LocalBeRoFactory()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|