summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/parser/schema-exceptions.txx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/parser/schema-exceptions.txx')
-rw-r--r--libxsd/xsd/cxx/parser/schema-exceptions.txx73
1 files changed, 0 insertions, 73 deletions
diff --git a/libxsd/xsd/cxx/parser/schema-exceptions.txx b/libxsd/xsd/cxx/parser/schema-exceptions.txx
deleted file mode 100644
index 2e548ab..0000000
--- a/libxsd/xsd/cxx/parser/schema-exceptions.txx
+++ /dev/null
@@ -1,73 +0,0 @@
-// file : xsd/cxx/parser/schema-exceptions.txx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-namespace xsd
-{
- namespace cxx
- {
- namespace parser
- {
- // expected_element
- //
- template <typename C>
- expected_element<C>::
- ~expected_element ()
- {
- }
-
- template <typename C>
- expected_element<C>::
- expected_element (const std::basic_string<C>& expected_namespace,
- const std::basic_string<C>& expected_name)
- : expected_namespace_ (expected_namespace),
- expected_name_ (expected_name)
- {
- }
-
- template <typename C>
- expected_element<C>::
- expected_element (const std::basic_string<C>& expected_namespace,
- const std::basic_string<C>& expected_name,
- const std::basic_string<C>& encountered_namespace,
- const std::basic_string<C>& encountered_name)
- : expected_namespace_ (expected_namespace),
- expected_name_ (expected_name),
- encountered_namespace_ (encountered_namespace),
- encountered_name_ (encountered_name)
- {
- }
-
- // unexpected_element
- //
- template <typename C>
- unexpected_element<C>::
- ~unexpected_element ()
- {
- }
-
- template <typename C>
- unexpected_element<C>::
- unexpected_element (const std::basic_string<C>& encountered_namespace,
- const std::basic_string<C>& encountered_name)
- : encountered_namespace_ (encountered_namespace),
- encountered_name_ (encountered_name)
- {
- }
-
- // dynamic_type
- //
- template <typename C>
- dynamic_type<C>::
- ~dynamic_type () throw ()
- {
- }
-
- template <typename C>
- dynamic_type<C>::
- dynamic_type (const std::basic_string<C>& type)
- : type_ (type)
- {
- }
- }
- }
-}