Revision 111, 0.8 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/dom/elements.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_DOM_ELEMENTS_HXX |
---|
7 | #define XSD_CXX_XML_DOM_ELEMENTS_HXX |
---|
8 | |
---|
9 | #include <xercesc/dom/DOMAttr.hpp> |
---|
10 | #include <xercesc/dom/DOMElement.hpp> |
---|
11 | |
---|
12 | #include <xsd/cxx/xml/qualified-name.hxx> |
---|
13 | |
---|
14 | namespace xsd |
---|
15 | { |
---|
16 | namespace cxx |
---|
17 | { |
---|
18 | namespace xml |
---|
19 | { |
---|
20 | namespace dom |
---|
21 | { |
---|
22 | template <typename C> |
---|
23 | qualified_name<C> |
---|
24 | name (const xercesc::DOMAttr&); |
---|
25 | |
---|
26 | template <typename C> |
---|
27 | qualified_name<C> |
---|
28 | name (const xercesc::DOMElement&); |
---|
29 | } |
---|
30 | } |
---|
31 | } |
---|
32 | } |
---|
33 | |
---|
34 | #include <xsd/cxx/xml/dom/elements.txx> |
---|
35 | |
---|
36 | #endif // XSD_CXX_XML_DOM_ELEMENTS_HXX |
---|