aboutsummaryrefslogtreecommitdiff
path: root/odb/polymorphic-map.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:48:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:48:00 +0200
commit1896d36996ab48ed7271e855d7e32b4e61f64896 (patch)
tree6d085eb0349d23bc26fe101b2451235939f17d40 /odb/polymorphic-map.ixx
parentc2be6303f97e470960ee77805128c46d3ea5c102 (diff)
Polymorphic inheritance support
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);
+ }
+}