blob: 176e40f2300119d451e7310bbadc80b12005f9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef FUNCTION_COMMAND_TO_LIST_H
#define FUNCTION__H
#include <stdint.h>
#include "function.h"
class FunctionCommandToList : public Function
{
public:
FunctionCommandToList();
virtual ~FunctionCommandToList();
virtual void execute( const StringList &lInput, StringList &lOutput );
private:
};
#endif
|