aboutsummaryrefslogtreecommitdiff
path: root/cutl/compiler/type-info.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/compiler/type-info.cxx')
-rw-r--r--cutl/compiler/type-info.cxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/cutl/compiler/type-info.cxx b/cutl/compiler/type-info.cxx
new file mode 100644
index 0000000..4be7177
--- /dev/null
+++ b/cutl/compiler/type-info.cxx
@@ -0,0 +1,31 @@
+// file : cutl/compiler/type-info.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <cutl/compiler/type-info.hxx>
+
+namespace cutl
+{
+ namespace compiler
+ {
+ using namespace bits;
+
+ type_info const&
+ lookup (type_id const& tid)
+ {
+ type_info_map::const_iterator i (type_info_map_->find (tid));
+
+ if (i == type_info_map_->end ())
+ throw no_type_info ();
+
+ return i->second;
+ }
+
+ void
+ insert (type_info const& ti)
+ {
+ type_info_map_->insert (type_info_map::value_type (ti.type_id (), ti));
+ }
+ }
+}