diff options
author | fcolin | 2007-02-01 12:57:01 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 12:57:01 +0000 |
commit | 38ea33b22d7de3fe79da5ee0b539f5eef251516f (patch) | |
tree | b43e1c474aca31e1730fe1e35800803efc7bec99 | |
parent | 3a4b32280456fd880bbd2282171f7087a9137314 (diff) | |
download | ivy-cplusplus-38ea33b22d7de3fe79da5ee0b539f5eef251516f.zip ivy-cplusplus-38ea33b22d7de3fe79da5ee0b539f5eef251516f.tar.gz ivy-cplusplus-38ea33b22d7de3fe79da5ee0b539f5eef251516f.tar.bz2 ivy-cplusplus-38ea33b22d7de3fe79da5ee0b539f5eef251516f.tar.xz |
Utilisateur : Fcolin Date : 20/07/00 Heure : 10:57 Archivé dans $/Ivy (vss 2)
-rw-r--r-- | Ivy/Ivy.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -82,7 +82,8 @@ protected: string appname;
/* liste des clients connectes */
CRITICAL_SECTION m_application_cs;
- std::vector<IvyApplication*> applications;
+ typedef std::list<IvyApplication*> IvyApplicationList;
+ IvyApplicationList applications;
/* liste des souscriptions locale a emettre aux autres applications */
std::vector<string> regexp_out;
|