From ec05778d5718a7912e506764d443a78d6a6179e3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 5 Nov 2012 22:41:51 +0000 Subject: Converted tabs to spaces with tabconv. --- src/experimental/regex.h | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'src/experimental/regex.h') diff --git a/src/experimental/regex.h b/src/experimental/regex.h index c83ebe8..e723450 100644 --- a/src/experimental/regex.h +++ b/src/experimental/regex.h @@ -14,31 +14,31 @@ namespace Bu { - class RegEx - { - public: - RegEx(); - RegEx( const Bu::String &sSrc ); - virtual ~RegEx(); + class RegEx + { + public: + RegEx(); + RegEx( const Bu::String &sSrc ); + virtual ~RegEx(); - void compile( const Bu::String &sSrc ); - int getNumSubStrings(); - bool execute( const Bu::String &sSrc ); - void getSubStringRange( int nIndex, int &iStart, int &iEnd ); - Bu::String getSubString( int nIndex ); - const Bu::String &getSource() - { - return sSrc; - } + void compile( const Bu::String &sSrc ); + int getNumSubStrings(); + bool execute( const Bu::String &sSrc ); + void getSubStringRange( int nIndex, int &iStart, int &iEnd ); + Bu::String getSubString( int nIndex ); + const Bu::String &getSource() + { + return sSrc; + } - private: - Bu::String sSrc; - Bu::String sTest; - void *pRegEx; - bool bCompiled; - int nSubStr; - void *paSubStr; - }; + private: + Bu::String sSrc; + Bu::String sTest; + void *pRegEx; + bool bCompiled; + int nSubStr; + void *paSubStr; + }; }; #endif -- cgit v1.2.3