aboutsummaryrefslogtreecommitdiff
path: root/odb/polymorphic-map.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/polymorphic-map.ixx')
-rw-r--r--odb/polymorphic-map.ixx20
1 files changed, 20 insertions, 0 deletions
diff --git a/odb/polymorphic-map.ixx b/odb/polymorphic-map.ixx
new file mode 100644
index 0000000..4dbd174
--- /dev/null
+++ b/odb/polymorphic-map.ixx
@@ -0,0 +1,20 @@
+// file : odb/polymorphic-map.ixx
+// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+namespace odb
+{
+ template <typename T>
+ inline polymorphic_entry<T>::
+ polymorphic_entry ()
+ {
+ polymorphic_entry_impl<root_type>::insert (object_traits::info);
+ }
+
+ template <typename T>
+ inline polymorphic_entry<T>::
+ ~polymorphic_entry ()
+ {
+ polymorphic_entry_impl<root_type>::erase (object_traits::info);
+ }
+}