summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/parser/schema-exceptions.txx
blob: 0d1960455a1c22d9aebc55794e5800cc2ad7ce16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// file      : xsd/cxx/parser/schema-exceptions.txx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
// 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)
      {
      }
    }
  }
}