diff options
author | fcolin | 2007-02-01 13:04:44 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:44 +0000 |
commit | 3206d022a755ffe703964afe2240146127b3f7a4 (patch) | |
tree | 84027c16981a237cb811ebffc58387c938284962 | |
parent | 910fbcd6d06367da9e53ec628a66e86b11b95fef (diff) | |
download | ivy-cplusplus-3206d022a755ffe703964afe2240146127b3f7a4.zip ivy-cplusplus-3206d022a755ffe703964afe2240146127b3f7a4.tar.gz ivy-cplusplus-3206d022a755ffe703964afe2240146127b3f7a4.tar.bz2 ivy-cplusplus-3206d022a755ffe703964afe2240146127b3f7a4.tar.xz |
Utilisateur : Fcolin Date : 2/06/05 Heure : 18:42 Archivé dans $/Bus/Ivy Commentaire: Suppression de la STL et ajout d'un namespace pour les datatypes internes Ivy (vss 5)
-rw-r--r-- | Ivy/Regexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ivy/Regexp.h b/Ivy/Regexp.h index 242d1de..3e036d9 100644 --- a/Ivy/Regexp.h +++ b/Ivy/Regexp.h @@ -16,13 +16,13 @@ public: bool Match( const char * s );
int SubStrings() const;
- const string operator[]( unsigned int i ) const;
+ const ivy::string operator[]( unsigned int i ) const;
int SubStart( unsigned int i ) const;
int SubLength( unsigned int i ) const;
- string GetReplaceString( const char * source ) const;
+ ivy::string GetReplaceString( const char * source ) const;
- string GetErrorString() const;
+ ivy::string GetErrorString() const;
bool CompiledOK() const;
#if defined( _RE_DEBUG )
@@ -30,7 +30,7 @@ public: #endif
private:
const char * str; /* used to return substring offsets only */
- mutable string m_szError;
+ mutable ivy::string m_szError;
regexp * rc;
void ClearErrorString() const;
|