blob: 6926a3b66ad8e72ec2225e5a45de1c9bc35a3412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "performfactory.h"
extern struct Bu::PluginInfo command;
PerformFactory::PerformFactory()
{
registerBuiltinPlugin( &command );
}
PerformFactory::~PerformFactory()
{
}
|