diff options
author | fcolin | 2007-02-01 13:04:44 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:44 +0000 |
commit | 49cffa2f5b76317d649cf375d74c812114b405c3 (patch) | |
tree | 6f63f731a9ce6956b8b66a1afabd54809d40175c /Bus/Ivy/Regexp.h | |
parent | d87b1476f89ad68c1eed4988301e5c244b8fc284 (diff) | |
download | ivy-cplusplus-49cffa2f5b76317d649cf375d74c812114b405c3.zip ivy-cplusplus-49cffa2f5b76317d649cf375d74c812114b405c3.tar.gz ivy-cplusplus-49cffa2f5b76317d649cf375d74c812114b405c3.tar.bz2 ivy-cplusplus-49cffa2f5b76317d649cf375d74c812114b405c3.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)
Diffstat (limited to 'Bus/Ivy/Regexp.h')
-rw-r--r-- | Bus/Ivy/Regexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Bus/Ivy/Regexp.h b/Bus/Ivy/Regexp.h index 242d1de..3e036d9 100644 --- a/Bus/Ivy/Regexp.h +++ b/Bus/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;
|