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.
|
#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);
|
|
|