You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
260 B
16 lines
260 B
15 years ago
|
#include "artsbuilder.h"
|
||
|
|
||
|
using namespace Arts;
|
||
|
using namespace std;
|
||
|
|
||
|
class LocalFactory_impl : virtual public LocalFactory_skel {
|
||
|
public:
|
||
|
Object createObject(const string& name)
|
||
|
{
|
||
|
return SubClass(name);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
REGISTER_IMPLEMENTATION(LocalFactory_impl);
|
||
|
|