summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ivy/IvyApplication.h6
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;
};