diff options
author | fcolin | 2007-02-01 13:01:03 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:01:03 +0000 |
commit | fbbba9efa5f7e22b7d6d824b5126af3e20c0479e (patch) | |
tree | a0021a05a778e154aed1f69242d32bfa68e6fa32 /Ivy | |
parent | 224519ededa0125951cf0ca7e13a2b25952321e6 (diff) | |
download | ivy-cplusplus-fbbba9efa5f7e22b7d6d824b5126af3e20c0479e.zip ivy-cplusplus-fbbba9efa5f7e22b7d6d824b5126af3e20c0479e.tar.gz ivy-cplusplus-fbbba9efa5f7e22b7d6d824b5126af3e20c0479e.tar.bz2 ivy-cplusplus-fbbba9efa5f7e22b7d6d824b5126af3e20c0479e.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 'Ivy')
-rw-r--r-- | Ivy/IvyApplication.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ivy/IvyApplication.h b/Ivy/IvyApplication.h index c32ca5f..64aa49f 100644 --- a/Ivy/IvyApplication.h +++ b/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;
};
|