blob: 42fe811f92f919f5a1732e431d49efcbaa5eb865 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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( Build *bld, const StringList &lInput, StringList &lOutput );
virtual Function *duplicate( Build &bld, const StringList *cont, VarMap *mExtra );
private:
};
#endif
|