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 --- libxsd/libxsd/cxx/tree/elements.txx | 55 +++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 libxsd/libxsd/cxx/tree/elements.txx (limited to 'libxsd/libxsd/cxx/tree/elements.txx') diff --git a/libxsd/libxsd/cxx/tree/elements.txx b/libxsd/libxsd/cxx/tree/elements.txx new file mode 100644 index 0000000..b4c2851 --- /dev/null +++ b/libxsd/libxsd/cxx/tree/elements.txx @@ -0,0 +1,55 @@ +// file : libxsd/cxx/tree/elements.txx +// license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +#include + +namespace xsd +{ + namespace cxx + { + namespace tree + { + // user_data_keys_template + // + template + const XMLCh user_data_keys_template::node[21] = + {xercesc::chLatin_x, xercesc::chLatin_s, xercesc::chLatin_d, // xsd + xercesc::chColon, xercesc::chColon, // :: + xercesc::chLatin_c, xercesc::chLatin_x, xercesc::chLatin_x, // cxx + xercesc::chColon, xercesc::chColon, // :: + xercesc::chLatin_t, xercesc::chLatin_r, xercesc::chLatin_e, // tre + xercesc::chLatin_e, xercesc::chColon, xercesc::chColon, // e:: + xercesc::chLatin_n, xercesc::chLatin_o, xercesc::chLatin_d, // nod + xercesc::chLatin_e, xercesc::chNull // e\0 + }; + + + // simple_type + // + template + simple_type:: + simple_type (const simple_type& other, + flags f, + container* c) + : B (other, f, c) + { + } + + template + simple_type* simple_type:: + _clone (flags f, container* c) const + { + return new simple_type (*this, f, c); + } + + // fundamental_base + // + template + fundamental_base* fundamental_base:: + _clone (flags f, container* c) const + { + return new fundamental_base (*this, f, c); + } + } + } +} -- cgit v1.1