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

#include <stdint.h>

#include "function.h"

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

private:

};

#endif