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