Revision 111, 1.2 kB
(checked in by mido, 17 years ago)
|
pridana knihovna XSD (a jeji chlebodarkyne XERCES), v ramci Win32 zprovoznen priklad tests/test_xsd_hello.cxx
|
Line | |
---|
1 | // file : xsd/cxx/xml/bits/literals.hxx |
---|
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 | #ifndef XSD_CXX_XML_BITS_LITERALS_HXX |
---|
7 | #define XSD_CXX_XML_BITS_LITERALS_HXX |
---|
8 | |
---|
9 | namespace xsd |
---|
10 | { |
---|
11 | namespace cxx |
---|
12 | { |
---|
13 | namespace xml |
---|
14 | { |
---|
15 | namespace bits |
---|
16 | { |
---|
17 | template <typename C> |
---|
18 | const C* |
---|
19 | xml_prefix (); |
---|
20 | |
---|
21 | template <typename C> |
---|
22 | const C* |
---|
23 | xml_namespace (); |
---|
24 | |
---|
25 | template <typename C> |
---|
26 | const C* |
---|
27 | xmlns_prefix (); |
---|
28 | |
---|
29 | template <typename C> |
---|
30 | const C* |
---|
31 | xmlns_namespace (); |
---|
32 | |
---|
33 | template <typename C> |
---|
34 | const C* |
---|
35 | xsi_prefix (); |
---|
36 | |
---|
37 | template <typename C> |
---|
38 | const C* |
---|
39 | xsi_namespace (); |
---|
40 | |
---|
41 | template <typename C> |
---|
42 | const C* |
---|
43 | type (); |
---|
44 | |
---|
45 | template <typename C> |
---|
46 | const C* |
---|
47 | nil (); |
---|
48 | |
---|
49 | template <typename C> |
---|
50 | const C* |
---|
51 | schema_location (); |
---|
52 | |
---|
53 | template <typename C> |
---|
54 | const C* |
---|
55 | no_namespace_schema_location (); |
---|
56 | } |
---|
57 | } |
---|
58 | } |
---|
59 | } |
---|
60 | |
---|
61 | #endif // XSD_CXX_XML_BITS_LITERALS_HXX |
---|
62 | |
---|
63 | #include <xsd/cxx/xml/bits/literals.ixx> |
---|