diff options
Diffstat (limited to '')
-rw-r--r-- | src/functionmatches.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/functionmatches.h b/src/functionmatches.h index 92ffe26..b569e0b 100644 --- a/src/functionmatches.h +++ b/src/functionmatches.h | |||
@@ -6,17 +6,17 @@ | |||
6 | class FunctionMatches : public Function | 6 | class FunctionMatches : public Function |
7 | { | 7 | { |
8 | public: | 8 | public: |
9 | FunctionMatches(); | 9 | FunctionMatches(); |
10 | virtual ~FunctionMatches(); | 10 | virtual ~FunctionMatches(); |
11 | 11 | ||
12 | /** | 12 | /** |
13 | * Really basic globbing function, it doesn't handle character classes, | 13 | * Really basic globbing function, it doesn't handle character classes, |
14 | * just * and ?. We can expand on it later, it may be handy. | 14 | * just * and ?. We can expand on it later, it may be handy. |
15 | */ | 15 | */ |
16 | bool globcmp( const Bu::String &sTxt, const Bu::String &sMatches ); | 16 | bool globcmp( const Bu::String &sTxt, const Bu::String &sMatches ); |
17 | bool matchlist( const Bu::String &sTxt, VarList &lParams ); | 17 | bool matchlist( const Bu::String &sTxt, VarList &lParams ); |
18 | virtual Bu::String getName() const; | 18 | virtual Bu::String getName() const; |
19 | virtual Variable call( Variable &input, VarList lParams ); | 19 | virtual Variable call( Variable &input, VarList lParams ); |
20 | 20 | ||
21 | }; | 21 | }; |
22 | 22 | ||