summaryrefslogtreecommitdiff
path: root/odb/context.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/context.hxx')
-rw-r--r--odb/context.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/odb/context.hxx b/odb/context.hxx
index 064b0d5..700e604 100644
--- a/odb/context.hxx
+++ b/odb/context.hxx
@@ -6,6 +6,7 @@
#ifndef ODB_CONTEXT_HXX
#define ODB_CONTEXT_HXX
+#include <map>
#include <set>
#include <string>
#include <ostream>
@@ -61,10 +62,13 @@ public:
typedef std::set<string> keyword_set_type;
keyword_set_type const& keyword_set;
+ typedef std::map<string, string> type_map_type;
+
private:
struct data
{
keyword_set_type keyword_set_;
+ type_map_type type_map_;
};
public: