summaryrefslogtreecommitdiff
path: root/Bus/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:00:55 +0000
committerfcolin2007-02-01 13:00:55 +0000
commit1069594d5234eff4a9986beeb06ea4097504e620 (patch)
tree222475a5e2a01fd82bad23224992d3f5a579dbd5 /Bus/Ivy
parentbd51ce79a192c2ed0f2af28c43eea1caab5ffc54 (diff)
downloadivy-cplusplus-1069594d5234eff4a9986beeb06ea4097504e620.zip
ivy-cplusplus-1069594d5234eff4a9986beeb06ea4097504e620.tar.gz
ivy-cplusplus-1069594d5234eff4a9986beeb06ea4097504e620.tar.bz2
ivy-cplusplus-1069594d5234eff4a9986beeb06ea4097504e620.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 10)
Diffstat (limited to 'Bus/Ivy')
-rw-r--r--Bus/Ivy/IvyApplication.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bus/Ivy/IvyApplication.h b/Bus/Ivy/IvyApplication.h
index 61b4432..7171fef 100644
--- a/Bus/Ivy/IvyApplication.h
+++ b/Bus/Ivy/IvyApplication.h
@@ -60,15 +60,15 @@ public:
// Implementation
protected:
- string appname;
+ ivy::string appname;
bool AppConnectedCallbackCalled;
Ivy *bus;
/* liste des souscriptions remote */
#ifdef USE_PCRE
static const int max_subexp = 200;
- typedef vector<pcre *> RegexpVector;
+ typedef ivy::vector<pcre *> RegexpVector;
#else
- typedef vector<Regexp *> RegexpVector;
+ typedef ivy::vector<Regexp *> RegexpVector;
#endif
RegexpVector regexp_in;