Revision 111, 1.0 kB
(checked in by mido, 16 years ago)
|
pridana knihovna XSD (a jeji chlebodarkyne XERCES), v ramci Win32 zprovoznen priklad tests/test_xsd_hello.cxx
|
Line | |
---|
1 | // file : xsd/cxx/parser/elements.txx |
---|
2 | // author : Boris Kolpackov <boris@codesynthesis.com> |
---|
3 | // copyright : Copyright (c) 2005-2008 Code Synthesis Tools CC |
---|
4 | // license : GNU GPL v2 + exceptions; see accompanying LICENSE file |
---|
5 | |
---|
6 | namespace xsd |
---|
7 | { |
---|
8 | namespace cxx |
---|
9 | { |
---|
10 | namespace parser |
---|
11 | { |
---|
12 | // parser_base |
---|
13 | // |
---|
14 | template <typename C> |
---|
15 | parser_base<C>:: |
---|
16 | ~parser_base () |
---|
17 | { |
---|
18 | } |
---|
19 | |
---|
20 | template <typename C> |
---|
21 | void parser_base<C>:: |
---|
22 | pre () |
---|
23 | { |
---|
24 | } |
---|
25 | |
---|
26 | template <typename C> |
---|
27 | void parser_base<C>:: |
---|
28 | _pre () |
---|
29 | { |
---|
30 | } |
---|
31 | |
---|
32 | template <typename C> |
---|
33 | void parser_base<C>:: |
---|
34 | _post () |
---|
35 | { |
---|
36 | } |
---|
37 | |
---|
38 | template <typename C> |
---|
39 | void parser_base<C>:: |
---|
40 | _pre_impl () |
---|
41 | { |
---|
42 | _pre (); |
---|
43 | } |
---|
44 | |
---|
45 | template <typename C> |
---|
46 | void parser_base<C>:: |
---|
47 | _post_impl () |
---|
48 | { |
---|
49 | _post (); |
---|
50 | } |
---|
51 | |
---|
52 | template <typename C> |
---|
53 | const C* parser_base<C>:: |
---|
54 | _dynamic_type () const |
---|
55 | { |
---|
56 | return 0; |
---|
57 | } |
---|
58 | } |
---|
59 | } |
---|
60 | } |
---|