summaryrefslogtreecommitdiff
path: root/Ivy/IvyApplication.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:00:55 +0000
committerfcolin2007-02-01 13:00:55 +0000
commit299c93cb71c2b55321a11be3e14800a6be320081 (patch)
treeddc4574942691d840dcc263d382a916a3b88ca99 /Ivy/IvyApplication.h
parentf2dfb0633a7ee0cf6b803d3e8575c3710d98f954 (diff)
downloadivy-cplusplus-299c93cb71c2b55321a11be3e14800a6be320081.zip
ivy-cplusplus-299c93cb71c2b55321a11be3e14800a6be320081.tar.gz
ivy-cplusplus-299c93cb71c2b55321a11be3e14800a6be320081.tar.bz2
ivy-cplusplus-299c93cb71c2b55321a11be3e14800a6be320081.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 'Ivy/IvyApplication.h')
-rw-r--r--Ivy/IvyApplication.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ivy/IvyApplication.h b/Ivy/IvyApplication.h
index 61b4432..7171fef 100644
--- a/Ivy/IvyApplication.h
+++ b/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;