diff options
author | fcolin | 2007-02-01 13:00:41 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:00:41 +0000 |
commit | 30703019e2a93abc2e1f1d1d99ec154c07489db9 (patch) | |
tree | 0fe3470604b4a431afc7ff75853c2c6b74951afa | |
parent | 841bdffb8db54acc8fa85845e8b48b6e5bd6f9ec (diff) | |
download | ivy-cplusplus-30703019e2a93abc2e1f1d1d99ec154c07489db9.zip ivy-cplusplus-30703019e2a93abc2e1f1d1d99ec154c07489db9.tar.gz ivy-cplusplus-30703019e2a93abc2e1f1d1d99ec154c07489db9.tar.bz2 ivy-cplusplus-30703019e2a93abc2e1f1d1d99ec154c07489db9.tar.xz |
Utilisateur : Fcolin Date : 23/01/01 Heure : 13:12 Archivé dans $/Ivy Commentaire: remove 'using name space std;' (vss 3)
-rw-r--r-- | Bus/Ivy/IvyApplication.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bus/Ivy/IvyApplication.h b/Bus/Ivy/IvyApplication.h index d7823f0..8a31888 100644 --- a/Bus/Ivy/IvyApplication.h +++ b/Bus/Ivy/IvyApplication.h @@ -64,11 +64,11 @@ public: // Implementation
protected:
- string appname;
+ String appname;
bool AppConnectedCallbackCalled;
Ivy *bus;
/* liste des souscriptions remote */
- map<int,Regexp*> regexp_in;
+ std::map<int,Regexp*> regexp_in;
};
|