diff options
author | fcolin | 2007-02-01 13:01:03 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:01:03 +0000 |
commit | ce6f97feda70123130919ac07eb24c2a149f6e93 (patch) | |
tree | 8443bd8f156a9fddc272ade08f57984de60f93ab /Bus/Ivy/IvyApplication.h | |
parent | 41df690026c789839d5e47da6f71d5b56da1b3c3 (diff) | |
download | ivy-cplusplus-ce6f97feda70123130919ac07eb24c2a149f6e93.zip ivy-cplusplus-ce6f97feda70123130919ac07eb24c2a149f6e93.tar.gz ivy-cplusplus-ce6f97feda70123130919ac07eb24c2a149f6e93.tar.bz2 ivy-cplusplus-ce6f97feda70123130919ac07eb24c2a149f6e93.tar.xz |
Utilisateur : Fcolin Date : 1/06/06 Heure : 16:40 Archivé dans $/Bus/Ivy Commentaire: correction bug du a la separation du module regexp transformation des tables de regexp en table de Hash (vss 14)
Diffstat (limited to 'Bus/Ivy/IvyApplication.h')
-rw-r--r-- | Bus/Ivy/IvyApplication.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bus/Ivy/IvyApplication.h b/Bus/Ivy/IvyApplication.h index c32ca5f..64aa49f 100644 --- a/Bus/Ivy/IvyApplication.h +++ b/Bus/Ivy/IvyApplication.h @@ -58,10 +58,10 @@ protected: Ivy *bus;
/* liste des souscriptions remote */
/* en clair */
- ivy::vector<ivy::string> regexp_str_in;
+ ivy::map<int,ivy::string> regexp_str_in;
/* compile */
- typedef ivy::vector<IvyBinding *> RegexpVector;
- RegexpVector regexp_in;
+ typedef ivy::map<int,IvyBinding *> Bindings;
+ Bindings regexp_in;
friend class Ivy;
};
|