summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/parsing.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-02-22 14:44:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-02-22 14:44:30 +0200
commit2c0a77a8f4565b6ef76c32b970df48369b3d0456 (patch)
tree6c8d18b27efa644cf852cfdb42158864895ac5b9 /libxsd/xsd/cxx/tree/parsing.txx
parent5a2282e394b4049d3db96c2c28e8622e7193a014 (diff)
Add support for excluding export code from compilation
Affected options: --generate-xml-schema, --export-maps, --import-maps. New macros: XSD_NO_EXPORT, XSD_MAP_VISIBILITY. Reorder template arguments for the idref type.
Diffstat (limited to 'libxsd/xsd/cxx/tree/parsing.txx')
-rw-r--r--libxsd/xsd/cxx/tree/parsing.txx13
1 files changed, 6 insertions, 7 deletions
diff --git a/libxsd/xsd/cxx/tree/parsing.txx b/libxsd/xsd/cxx/tree/parsing.txx
index 642307a..8da53b9 100644
--- a/libxsd/xsd/cxx/tree/parsing.txx
+++ b/libxsd/xsd/cxx/tree/parsing.txx
@@ -638,22 +638,22 @@ namespace xsd
// idref
//
- template <typename T, typename C, typename B>
- idref<T, C, B>::
+ template <typename C, typename B, typename T>
+ idref<C, B, T>::
idref (const xercesc::DOMElement& e, flags f, container* c)
: base_type (e, f, c), identity_ (*this)
{
}
- template <typename T, typename C, typename B>
- idref<T, C, B>::
+ template <typename C, typename B, typename T>
+ idref<C, B, T>::
idref (const xercesc::DOMAttr& a, flags f, container* c)
: base_type (a, f , c), identity_ (*this)
{
}
- template <typename T, typename C, typename B>
- idref<T, C, B>::
+ template <typename C, typename B, typename T>
+ idref<C, B, T>::
idref (const std::basic_string<C>& s,
const xercesc::DOMElement* e,
flags f,
@@ -663,7 +663,6 @@ namespace xsd
}
-
// idrefs
//
template <typename C, typename B, typename idref>