From 2615896faa646e5830abf2c269150e1165c66515 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- .../cxx/parser/validating/inheritance-map.txx | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 libxsd/libxsd/cxx/parser/validating/inheritance-map.txx (limited to 'libxsd/libxsd/cxx/parser/validating/inheritance-map.txx') diff --git a/libxsd/libxsd/cxx/parser/validating/inheritance-map.txx b/libxsd/libxsd/cxx/parser/validating/inheritance-map.txx new file mode 100644 index 0000000..418d685 --- /dev/null +++ b/libxsd/libxsd/cxx/parser/validating/inheritance-map.txx @@ -0,0 +1,71 @@ +// file : libxsd/cxx/parser/validating/inheritance-map.txx +// license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +namespace xsd +{ + namespace cxx + { + namespace parser + { + namespace validating + { + template + bool inheritance_map:: + check (const C* derived, const ro_string& base) const + { + if (base == derived) + return true; + + typename map::const_iterator i (map_.find (derived)); + + if (i != map_.end ()) + { + if (base == i->second) + return true; + else + return check (i->second, base); + } + + return false; + } + + // inheritance_map_init + // + template + inheritance_map_init:: + inheritance_map_init () + { + if (count == 0) + map = new inheritance_map; + + ++count; + } + + template + inheritance_map_init:: + ~inheritance_map_init () + { + if (--count == 0) + delete map; + } + + // inheritance_map_entry + // + template + inheritance_map_entry:: + inheritance_map_entry (const C* derived, const C* base) + : derived_ (derived) + { + inheritance_map_instance ().insert (derived, base); + } + + template + inheritance_map_entry:: + ~inheritance_map_entry () + { + inheritance_map_instance ().erase (derived_); + } + } + } + } +} -- cgit v1.1