Separatista
xerces_types.h
1 /***************************************************************************
2 * Copyright (C) 2014 by Okkel Klaver *
3 * info@vanhetland.nl *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 
21 #ifndef SEPARATISTA_XERCES_TYPES_H
22 #define SEPARATISTA_XERCES_TYPES_H
23 
24 #ifdef XERCES_HAS_CPP_NAMESPACE
25 #include <xercesc/dom/DOMDocument.hpp>
26 #include <xercesc/dom/DOMElement.hpp>
27 #include <xercesc/dom/DOMNodeIterator.hpp>
28 #include <xercesc/dom/DOMNode.hpp>
29 #include <xercesc/parsers/XercesDOMParser.hpp>
30 #include <xercesc/sax/SAXParseException.hpp>
31 #include <xercesc/dom/DOMErrorHandler.hpp>
32 #endif
33 
34 #ifndef XERCES_HAS_CPP_NAMESPACE
35 namespace xercesc_3_1
36 {
37  class DOMDocument;
38  class DOMElement;
39  class DOMNodeIterator;
40  class DOMNode;
41  class XercesDOMParser;
42  class SAXParseException;
43  class ErrorHandler;
44 }
45 namespace xercesc = xercesc_3_1;
46 #endif
47 
48 #endif // SEPARATISTA_XERCES_TYPES_H
Definition: xerces_types.h:35