aboutsummaryrefslogtreecommitdiff
path: root/src/functionregex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionregex.h')
-rw-r--r--src/functionregex.h14
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
6namespace Bu 6namespace Bu
7{ 7{
8 class RegEx; 8 class RegEx;
9} 9}
10 10
11class FunctionRegEx : public Function 11class FunctionRegEx : public Function
12{ 12{
13public: 13public:
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