aboutsummaryrefslogtreecommitdiff
path: root/src/functionfilesin.h
blob: 2ad23f9fb65378009f0cecf1d6aa0e5d4f084d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef FUNCTION_FILES_IN_H
#define FUNCTION_FILES_IN_H

#include <stdint.h>

#include "function.h"

class FunctionFilesIn : public Function
{
public:
	FunctionFilesIn();
	virtual ~FunctionFilesIn();
	
	virtual void execute( StringList &lInput, StringList &lOutput );

private:

};

#endif