summaryrefslogtreecommitdiff
path: root/Ivy/Ivy.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:57:19 +0000
committerfcolin2007-02-01 12:57:19 +0000
commitbb7e4c76744e4b9684e95757eb58fd6c06560fcb (patch)
tree3f662b7066060019c53a68afc789bb832bcdb515 /Ivy/Ivy.h
parent239cf6df4b6d30950869b5ecefaeaaacc3eda91b (diff)
downloadivy-cplusplus-bb7e4c76744e4b9684e95757eb58fd6c06560fcb.zip
ivy-cplusplus-bb7e4c76744e4b9684e95757eb58fd6c06560fcb.tar.gz
ivy-cplusplus-bb7e4c76744e4b9684e95757eb58fd6c06560fcb.tar.bz2
ivy-cplusplus-bb7e4c76744e4b9684e95757eb58fd6c06560fcb.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 11)
Diffstat (limited to 'Ivy/Ivy.h')
-rw-r--r--Ivy/Ivy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Ivy/Ivy.h b/Ivy/Ivy.h
index 185f93d..7c6b523 100644
--- a/Ivy/Ivy.h
+++ b/Ivy/Ivy.h
@@ -76,7 +76,7 @@ public:
virtual ~Ivy();
/* message a emettre sur connection nouvelle application */
- string ready_message;
+ ivy::string ready_message;
protected:
bool synchronous; // use Window Shink to made CB mono thread like
@@ -86,18 +86,18 @@ protected:
IvyDirectMessageCallback *direct_callback;
IvyApplicationCallback *application_callback;
/* list des adresses de broadcast */
- string domain;
+ ivy::string domain;
/* nom de l'appliction */
- string appname;
+ ivy::string appname;
/* liste des clients connectes */
CRITICAL_SECTION m_application_cs;
- typedef list<IvyApplication*> IvyApplicationList;
+ typedef ivy::list<IvyApplication*> IvyApplicationList;
IvyApplicationList applications;
/* liste des souscriptions locale a emettre aux autres applications */
- vector<string> regexp_out;
+ ivy::vector<ivy::string> regexp_out;
/* liste des callbacks a appeler */
- vector< IvyMessageCallback* > callbacks;
+ ivy::vector< IvyMessageCallback* > callbacks;
/* classes de messages emis par l'application utilise pour le filtrage */
int messages_classes_count;
const char **messages_classes;