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