blob: 46762b562546bbd7ae303c9d1033f4fc83eccecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "functioncommandtolist.h"
#include "plugger.h"
PluginInterface2(commandToList, FunctionCommandToList, Function, "Mike Buland", 0, 1 );
FunctionCommandToList::FunctionCommandToList()
{
}
FunctionCommandToList::~FunctionCommandToList()
{
}
void FunctionCommandToList::execute( const StringList &lInput, StringList &lOutput )
{
}
|