diff options
Diffstat (limited to '')
-rw-r--r-- | src/functionregex.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/functionregex.h b/src/functionregex.h index edc21c6..1ded9ab 100644 --- a/src/functionregex.h +++ b/src/functionregex.h | |||
@@ -5,20 +5,20 @@ | |||
5 | 5 | ||
6 | namespace Bu | 6 | namespace Bu |
7 | { | 7 | { |
8 | class RegEx; | 8 | class RegEx; |
9 | } | 9 | } |
10 | 10 | ||
11 | class FunctionRegEx : public Function | 11 | class FunctionRegEx : public Function |
12 | { | 12 | { |
13 | public: | 13 | public: |
14 | FunctionRegEx(); | 14 | FunctionRegEx(); |
15 | virtual ~FunctionRegEx(); | 15 | virtual ~FunctionRegEx(); |
16 | 16 | ||
17 | virtual Bu::String getName() const; | 17 | virtual Bu::String getName() const; |
18 | virtual Variable call( Variable &input, VarList lParams ); | 18 | virtual Variable call( Variable &input, VarList lParams ); |
19 | 19 | ||
20 | Bu::String replace( Bu::RegEx &re, const Bu::String &sSrc, | 20 | Bu::String replace( Bu::RegEx &re, const Bu::String &sSrc, |
21 | const Bu::String &sPat ); | 21 | const Bu::String &sPat ); |
22 | }; | 22 | }; |
23 | 23 | ||
24 | #endif | 24 | #endif |