From f0510d2f90467de8e8f260b47d79a9baaf9bef17 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 17 Sep 2009 07:15:29 +0200 Subject: Start tracking XSD with git --- .../xsd/cxx/parser/validating/inheritance-map.txx | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 libxsd/xsd/cxx/parser/validating/inheritance-map.txx (limited to 'libxsd/xsd/cxx/parser/validating/inheritance-map.txx') diff --git a/libxsd/xsd/cxx/parser/validating/inheritance-map.txx b/libxsd/xsd/cxx/parser/validating/inheritance-map.txx new file mode 100644 index 0000000..5e70409 --- /dev/null +++ b/libxsd/xsd/cxx/parser/validating/inheritance-map.txx @@ -0,0 +1,65 @@ +// file : xsd/cxx/parser/validating/inheritance-map.txx +// author : Boris Kolpackov +// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC +// 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) + { + inheritance_map_instance ().insert (derived, base); + } + } + } + } +} -- cgit v1.1