aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/parser/validating/parser.ixx
blob: e302e2c8a5934f4e803358b8d951fbc912404735 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// file      : xsde/cxx/parser/validating/parser.ixx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

namespace xsde
{
  namespace cxx
  {
    namespace parser
    {
      namespace validating
      {

        // empty_content
        //
#ifdef XSDE_REUSE_STYLE_TIEIN
        inline empty_content::
        empty_content ()
        {
        }

        inline empty_content::
        empty_content (empty_content* impl, void*)
            : parser_base (impl, 0)
        {
        }
#endif

        // simple_content
        //
#ifdef XSDE_REUSE_STYLE_TIEIN
        inline simple_content::
        simple_content ()
        {
        }

        inline simple_content::
        simple_content (simple_content* impl, void*)
            : empty_content (impl, 0)
        {
        }
#endif

        // complex_content
        //
        inline complex_content::
        complex_content ()
            : depth_ (0), parser_stack_ (previous_)
        {
        }

#ifdef XSDE_REUSE_STYLE_TIEIN
        inline complex_content::
        complex_content (complex_content* impl, void*)
            : empty_content (impl, 0), depth_ (0), parser_stack_ (previous_)
        {
        }
#endif

        // all_stack
        //

        inline all_stack::
        all_stack (size_t n, unsigned char* first)
            : stack_ (n, first)
        {
        }

#ifdef XSDE_EXCEPTIONS
        inline void all_stack::
#else
        inline stack::error all_stack::
#endif
        push ()
        {
#ifdef XSDE_EXCEPTIONS
          stack_.push ();
#else
          if (stack::error e = stack_.push ())
            return e;
#endif
          unsigned char* p = static_cast<unsigned char*> (stack_.top ());

          for (size_t i = 0; i < stack_.element_size (); ++i)
            p[i] = 0;

#ifndef XSDE_EXCEPTIONS
          return stack::error_none;
#endif
        }

        inline void all_stack::
        pop ()
        {
          stack_.pop ();
        }

        inline unsigned char* all_stack::
        top ()
        {
          return static_cast<unsigned char*> (stack_.top ());
        }

        inline void all_stack::
        clear ()
        {
          stack_.clear ();
        }


        // list_base
        //
#ifdef XSDE_REUSE_STYLE_TIEIN
        inline list_base::
        list_base ()
        {
        }

        inline list_base::
        list_base (list_base* impl, void*)
            : simple_content (impl, 0)
        {
        }
#endif
      }
    }
  }
}