diff --git a/Makefile.am b/Makefile.am index c5355963..07ba22a4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,7 +34,7 @@ EXTRA_DIST=vs7 \ dist-hook: find $(distdir) -print | grep \.svn | xargs rm -rf find $(distdir) -print | grep \~$ | xargs rm -rf - rm $(distdir)/include/SAX/ArabicaConfig.h + rm $(distdir)/include/SAX/ArabicaConfig.hpp pkgconfigdir = src/pkgconfig pkgconfig_DATA = arabica.pc diff --git a/configure.ac b/configure.ac index b593afda..40011363 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ ARABICA_CHECK_SOCKETS ARABICA_HAS_BOOST([1.33]) ARABICA_WANT_DOM -AC_CONFIG_HEADERS([include/SAX/ArabicaConfig.h]) +AC_CONFIG_HEADERS([include/SAX/ArabicaConfig.hpp]) AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([arabica.pc]) AC_CONFIG_FILES([src/Makefile]) diff --git a/examples/DOM/DOMWriter.cpp b/examples/DOM/DOMWriter.cpp index 53d7a9b0..72a2b63d 100644 --- a/examples/DOM/DOMWriter.cpp +++ b/examples/DOM/DOMWriter.cpp @@ -6,9 +6,9 @@ #endif #include -#include -#include -#include +#include +#include +#include //////////////////////////////////////////////// int main(int argc, char* argv[]) diff --git a/examples/SAX/Makefile.am b/examples/SAX/Makefile.am index 6acc332b..8236ce78 100755 --- a/examples/SAX/Makefile.am +++ b/examples/SAX/Makefile.am @@ -6,7 +6,7 @@ LIBARABICA = $(top_builddir)/src/libarabica.la pyx_SOURCES = pyx.cpp pyx_LDADD = $(LIBARABICA) -simple_handler_SOURCES = SimpleHandler.cpp SimpleHandler.h wrapper.cpp +simple_handler_SOURCES = SimpleHandler.cpp SimpleHandler.hpp wrapper.cpp simple_handler_LDADD = $(LIBARABICA) writer_SOURCES = writer.cpp diff --git a/examples/SAX/SimpleHandler.cpp b/examples/SAX/SimpleHandler.cpp index ccf3aa30..dcd54a58 100644 --- a/examples/SAX/SimpleHandler.cpp +++ b/examples/SAX/SimpleHandler.cpp @@ -2,7 +2,7 @@ # pragma warning(disable:4786) #endif -#include "SimpleHandler.h" +#include "SimpleHandler.hpp" #include ////////////////////////////////////////////// diff --git a/examples/SAX/SimpleHandler.h b/examples/SAX/SimpleHandler.hpp similarity index 91% rename from examples/SAX/SimpleHandler.h rename to examples/SAX/SimpleHandler.hpp index a44e7bd6..d874f2f7 100644 --- a/examples/SAX/SimpleHandler.h +++ b/examples/SAX/SimpleHandler.hpp @@ -2,16 +2,16 @@ #define SimpleHandlerH #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include class SimpleHandler : public SAX::EntityResolver, public SAX::DTDHandler, diff --git a/examples/SAX/pyx.cpp b/examples/SAX/pyx.cpp index 1c7ee9d5..4ad42e00 100644 --- a/examples/SAX/pyx.cpp +++ b/examples/SAX/pyx.cpp @@ -14,9 +14,9 @@ #pragma warning(disable : 4786) #endif -#include -#include -#include +#include +#include +#include #include class SAX2PYX : public SAX::DefaultHandler diff --git a/examples/SAX/wrapper.cpp b/examples/SAX/wrapper.cpp index 55ff3aeb..aaf6171a 100644 --- a/examples/SAX/wrapper.cpp +++ b/examples/SAX/wrapper.cpp @@ -2,10 +2,10 @@ #pragma warning(disable:4786) #endif -#include "SimpleHandler.h" -#include -#include -#include +#include "SimpleHandler.hpp" +#include +#include +#include #include #include diff --git a/examples/SAX/writer.cpp b/examples/SAX/writer.cpp index 9bf57076..328b5e85 100644 --- a/examples/SAX/writer.cpp +++ b/examples/SAX/writer.cpp @@ -2,12 +2,12 @@ # pragma warning(disable:4786) #endif -#include -#include -#include +#include +#include +#include #include -#include -#include +#include +#include //////////////////////////////////////////////// int main(int argc, char* argv[]) diff --git a/examples/SAX/xmlbase.cpp b/examples/SAX/xmlbase.cpp index 2f3f4292..fadd6c9b 100644 --- a/examples/SAX/xmlbase.cpp +++ b/examples/SAX/xmlbase.cpp @@ -12,10 +12,10 @@ #pragma warning(disable : 4786) #endif -#include -#include -#include -#include +#include +#include +#include +#include #include class hrefPrinter : public SAX::DefaultHandler diff --git a/examples/Utils/transcode.cpp b/examples/Utils/transcode.cpp index 5b6af234..e9f74216 100644 --- a/examples/Utils/transcode.cpp +++ b/examples/Utils/transcode.cpp @@ -9,15 +9,15 @@ #endif #include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include std::ifstream inputFile; diff --git a/examples/XPath/xgrep.cpp b/examples/XPath/xgrep.cpp index cdbdf317..dad50422 100644 --- a/examples/XPath/xgrep.cpp +++ b/examples/XPath/xgrep.cpp @@ -6,9 +6,9 @@ #endif #include -#include -#include -#include +#include +#include +#include #include //////////////////////////////////////////////// diff --git a/examples/XSLT/mangle.cpp b/examples/XSLT/mangle.cpp index 95ae0c32..03bb6cf2 100755 --- a/examples/XSLT/mangle.cpp +++ b/examples/XSLT/mangle.cpp @@ -5,8 +5,8 @@ #include #include -#include -#include +#include +#include #include void test_suite(int argc, const char* argv[]); diff --git a/include/DOM/Attr.h b/include/DOM/Attr.hpp similarity index 98% rename from include/DOM/Attr.h rename to include/DOM/Attr.hpp index 4cda2c4d..dfd026eb 100644 --- a/include/DOM/Attr.h +++ b/include/DOM/Attr.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/CDATASection.h b/include/DOM/CDATASection.hpp similarity index 98% rename from include/DOM/CDATASection.h rename to include/DOM/CDATASection.hpp index fbdcc9b3..4deeb507 100644 --- a/include/DOM/CDATASection.h +++ b/include/DOM/CDATASection.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/CharacterData.h b/include/DOM/CharacterData.hpp similarity index 99% rename from include/DOM/CharacterData.h rename to include/DOM/CharacterData.hpp index 753915d3..4a7e3141 100644 --- a/include/DOM/CharacterData.h +++ b/include/DOM/CharacterData.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Comment.h b/include/DOM/Comment.hpp similarity index 96% rename from include/DOM/Comment.h rename to include/DOM/Comment.hpp index 2aa1c673..4a11113b 100644 --- a/include/DOM/Comment.h +++ b/include/DOM/Comment.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/DOMException.h b/include/DOM/DOMException.hpp similarity index 100% rename from include/DOM/DOMException.h rename to include/DOM/DOMException.hpp diff --git a/include/DOM/DOMImplementation.h b/include/DOM/DOMImplementation.hpp similarity index 99% rename from include/DOM/DOMImplementation.h rename to include/DOM/DOMImplementation.hpp index 46bccb29..4c210d37 100644 --- a/include/DOM/DOMImplementation.h +++ b/include/DOM/DOMImplementation.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Document.h b/include/DOM/Document.hpp similarity index 92% rename from include/DOM/Document.h rename to include/DOM/Document.hpp index cdbba8b1..e2faa862 100644 --- a/include/DOM/Document.h +++ b/include/DOM/Document.hpp @@ -7,22 +7,22 @@ // $Id$ //////////////////////////// -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include -#include +#include +#include namespace DOM { diff --git a/include/DOM/DocumentFragment.h b/include/DOM/DocumentFragment.hpp similarity index 97% rename from include/DOM/DocumentFragment.h rename to include/DOM/DocumentFragment.hpp index 7d1ecfbf..ff737c77 100644 --- a/include/DOM/DocumentFragment.h +++ b/include/DOM/DocumentFragment.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include #include namespace DOM diff --git a/include/DOM/DocumentType.h b/include/DOM/DocumentType.hpp similarity index 95% rename from include/DOM/DocumentType.h rename to include/DOM/DocumentType.hpp index 54c581b3..76fe3a95 100644 --- a/include/DOM/DocumentType.h +++ b/include/DOM/DocumentType.hpp @@ -7,9 +7,9 @@ // $Id$ //////////////////////////// -#include -#include -#include +#include +#include +#include namespace DOM { diff --git a/include/DOM/Element.h b/include/DOM/Element.hpp similarity index 98% rename from include/DOM/Element.h rename to include/DOM/Element.hpp index fb537cf0..021a943b 100644 --- a/include/DOM/Element.h +++ b/include/DOM/Element.hpp @@ -7,9 +7,9 @@ // $Id$ //////////////////////////// -#include -#include -#include +#include +#include +#include namespace DOM { diff --git a/include/DOM/Entity.h b/include/DOM/Entity.hpp similarity index 98% rename from include/DOM/Entity.h rename to include/DOM/Entity.hpp index 655e245d..fee57e8e 100644 --- a/include/DOM/Entity.h +++ b/include/DOM/Entity.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/EntityReference.h b/include/DOM/EntityReference.hpp similarity index 97% rename from include/DOM/EntityReference.h rename to include/DOM/EntityReference.hpp index 16821bad..540c2f3b 100644 --- a/include/DOM/EntityReference.h +++ b/include/DOM/EntityReference.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Events/DocumentEvent.h b/include/DOM/Events/DocumentEvent.hpp similarity index 97% rename from include/DOM/Events/DocumentEvent.h rename to include/DOM/Events/DocumentEvent.hpp index 63674f48..023de4ac 100644 --- a/include/DOM/Events/DocumentEvent.h +++ b/include/DOM/Events/DocumentEvent.hpp @@ -7,7 +7,7 @@ // $Id$ ///////////////////////////////////////// -#include +#include namespace DOM { @@ -70,4 +70,4 @@ class DocumentEvent_impl : virtual public DOM::Impl } // namespace DOM #endif -// end of file \ No newline at end of file +// end of file diff --git a/include/DOM/Events/Event.h b/include/DOM/Events/Event.hpp similarity index 100% rename from include/DOM/Events/Event.h rename to include/DOM/Events/Event.hpp diff --git a/include/DOM/Events/EventException.h b/include/DOM/Events/EventException.hpp similarity index 100% rename from include/DOM/Events/EventException.h rename to include/DOM/Events/EventException.hpp diff --git a/include/DOM/Events/EventListener.h b/include/DOM/Events/EventListener.hpp similarity index 100% rename from include/DOM/Events/EventListener.h rename to include/DOM/Events/EventListener.hpp diff --git a/include/DOM/Events/EventTarget.h b/include/DOM/Events/EventTarget.hpp similarity index 98% rename from include/DOM/Events/EventTarget.h rename to include/DOM/Events/EventTarget.hpp index f5d8bc27..7b3f6a27 100644 --- a/include/DOM/Events/EventTarget.h +++ b/include/DOM/Events/EventTarget.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { @@ -90,4 +90,4 @@ class EventTarget_impl : virtual public Impl } // namespace DOM -#endif \ No newline at end of file +#endif diff --git a/include/DOM/Events/MutationEvent.h b/include/DOM/Events/MutationEvent.hpp similarity index 98% rename from include/DOM/Events/MutationEvent.h rename to include/DOM/Events/MutationEvent.hpp index 45b064b3..85e9967d 100644 --- a/include/DOM/Events/MutationEvent.h +++ b/include/DOM/Events/MutationEvent.hpp @@ -1,7 +1,7 @@ #ifndef JEZUK_EVENTS_MUTATIONEVENT_H #define JEZUK_EVENTS_MUTATIONEVENT_H -#include +#include namespace DOM { @@ -104,4 +104,4 @@ class MutationEvent_impl : virtual public Event_impl } // namespace DOM #endif -// end of file \ No newline at end of file +// end of file diff --git a/include/DOM/NamedNodeMap.h b/include/DOM/NamedNodeMap.hpp similarity index 99% rename from include/DOM/NamedNodeMap.h rename to include/DOM/NamedNodeMap.hpp index 2ec65140..23f6c6e0 100644 --- a/include/DOM/NamedNodeMap.h +++ b/include/DOM/NamedNodeMap.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Node.h b/include/DOM/Node.hpp similarity index 99% rename from include/DOM/Node.h rename to include/DOM/Node.hpp index 24b17970..1005c65f 100644 --- a/include/DOM/Node.h +++ b/include/DOM/Node.hpp @@ -6,8 +6,8 @@ // // $Id$ //////////////////////////// -#include -#include +#include +#include #include #include diff --git a/include/DOM/NodeList.h b/include/DOM/NodeList.hpp similarity index 98% rename from include/DOM/NodeList.h rename to include/DOM/NodeList.hpp index 450fa015..0bfcf5a9 100644 --- a/include/DOM/NodeList.h +++ b/include/DOM/NodeList.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Notation.h b/include/DOM/Notation.hpp similarity index 98% rename from include/DOM/Notation.h rename to include/DOM/Notation.hpp index d5344a9f..cccac680 100644 --- a/include/DOM/Notation.h +++ b/include/DOM/Notation.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include #include namespace DOM diff --git a/include/DOM/ProcessingInstruction.h b/include/DOM/ProcessingInstruction.hpp similarity index 98% rename from include/DOM/ProcessingInstruction.h rename to include/DOM/ProcessingInstruction.hpp index fb8581c5..e3f23997 100644 --- a/include/DOM/ProcessingInstruction.h +++ b/include/DOM/ProcessingInstruction.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Proxy.h b/include/DOM/Proxy.hpp similarity index 100% rename from include/DOM/Proxy.h rename to include/DOM/Proxy.hpp diff --git a/include/DOM/SAX2DOM/DocumentTypeImpl.h b/include/DOM/SAX2DOM/DocumentTypeImpl.hpp similarity index 97% rename from include/DOM/SAX2DOM/DocumentTypeImpl.h rename to include/DOM/SAX2DOM/DocumentTypeImpl.hpp index b2de3e5c..4d55185c 100644 --- a/include/DOM/SAX2DOM/DocumentTypeImpl.h +++ b/include/DOM/SAX2DOM/DocumentTypeImpl.hpp @@ -1,7 +1,7 @@ #ifndef JEZUK_SAX2DOM_DOCUMENTTYPEIMPL_H #define JEZUK_SAX2DOM_DOCUMENTTYPEIMPL_H -#include +#include namespace SAX2DOM { diff --git a/include/DOM/SAX2DOM/SAX2DOM.h b/include/DOM/SAX2DOM/SAX2DOM.hpp similarity index 96% rename from include/DOM/SAX2DOM/SAX2DOM.h rename to include/DOM/SAX2DOM/SAX2DOM.hpp index a04cf05b..b1bb4416 100644 --- a/include/DOM/SAX2DOM/SAX2DOM.h +++ b/include/DOM/SAX2DOM/SAX2DOM.hpp @@ -1,19 +1,19 @@ #ifndef JEZUK_SAX2DOM_PARSER_H #define JEZUK_SAX2DOM_PARSER_H -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include -#include -#include -#include +#include +#include +#include namespace SAX2DOM { diff --git a/include/DOM/Simple/AttrImpl.h b/include/DOM/Simple/AttrImpl.hpp similarity index 97% rename from include/DOM/Simple/AttrImpl.h rename to include/DOM/Simple/AttrImpl.hpp index bf6b59ff..e303a73d 100644 --- a/include/DOM/Simple/AttrImpl.h +++ b/include/DOM/Simple/AttrImpl.hpp @@ -1,10 +1,10 @@ #ifndef JEZUK_SIMPLEDOM_ATTRIMPL_H #define JEZUK_SIMPLEDOM_ATTRIMPL_H -#include -#include -#include -#include +#include +#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/AttrMap.h b/include/DOM/Simple/AttrMap.hpp similarity index 98% rename from include/DOM/Simple/AttrMap.h rename to include/DOM/Simple/AttrMap.hpp index 487b4441..b24dfea1 100644 --- a/include/DOM/Simple/AttrMap.h +++ b/include/DOM/Simple/AttrMap.hpp @@ -1,9 +1,9 @@ #ifndef JEZUK_SimpleDOM_ATTRMAP_H #define JEZUK_SimpleDOM_ATTRMAP_H -#include -#include -#include +#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/AttrNSImpl.h b/include/DOM/Simple/AttrNSImpl.hpp similarity index 98% rename from include/DOM/Simple/AttrNSImpl.h rename to include/DOM/Simple/AttrNSImpl.hpp index fe11b755..e55e2bd6 100644 --- a/include/DOM/Simple/AttrNSImpl.h +++ b/include/DOM/Simple/AttrNSImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_ATTRNSIMPL_H #define JEZUK_SimpleDOM_ATTRNSIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/CDATASectionImpl.h b/include/DOM/Simple/CDATASectionImpl.hpp similarity index 98% rename from include/DOM/Simple/CDATASectionImpl.h rename to include/DOM/Simple/CDATASectionImpl.hpp index 60a982c7..f2271c90 100644 --- a/include/DOM/Simple/CDATASectionImpl.h +++ b/include/DOM/Simple/CDATASectionImpl.hpp @@ -1,7 +1,7 @@ #ifndef JEZUK_SIMPLEDOM_CDATASECTIONIMPL_H #define JEZUK_SIMPLEDOM_CDATASECTIONIMPL_H -#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/CharacterDataImpl.h b/include/DOM/Simple/CharacterDataImpl.hpp similarity index 97% rename from include/DOM/Simple/CharacterDataImpl.h rename to include/DOM/Simple/CharacterDataImpl.hpp index a4a21bb6..196aef4a 100644 --- a/include/DOM/Simple/CharacterDataImpl.h +++ b/include/DOM/Simple/CharacterDataImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_CHARACTERDATAIMPL_H #define JEZUK_SimpleDOM_CHARACTERDATAIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/CommentImpl.h b/include/DOM/Simple/CommentImpl.hpp similarity index 94% rename from include/DOM/Simple/CommentImpl.h rename to include/DOM/Simple/CommentImpl.hpp index d42b7ca8..fa32fc84 100644 --- a/include/DOM/Simple/CommentImpl.h +++ b/include/DOM/Simple/CommentImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_COMMENTIMPL_H #define JEZUK_SimpleDOM_COMMENTIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/DOMImplementation.h b/include/DOM/Simple/DOMImplementation.hpp similarity index 94% rename from include/DOM/Simple/DOMImplementation.h rename to include/DOM/Simple/DOMImplementation.hpp index 2bfb71f1..9c837703 100644 --- a/include/DOM/Simple/DOMImplementation.h +++ b/include/DOM/Simple/DOMImplementation.hpp @@ -1,11 +1,11 @@ #ifndef JEZUK_SimpleDOM_DOMIMPLEMENTATIONIMPL_H #define JEZUK_SimpleDOM_DOMIMPLEMENTATIONIMPL_H -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/DocumentFragmentImpl.h b/include/DOM/Simple/DocumentFragmentImpl.hpp similarity index 98% rename from include/DOM/Simple/DocumentFragmentImpl.h rename to include/DOM/Simple/DocumentFragmentImpl.hpp index b22160d5..265888fd 100644 --- a/include/DOM/Simple/DocumentFragmentImpl.h +++ b/include/DOM/Simple/DocumentFragmentImpl.hpp @@ -1,7 +1,7 @@ #ifndef JEZUK_SimpleDOM_DOCUMENTFRAGMENTIMPL_H #define JEZUK_SimpleDOM_DOCUMENTFRAGMENTIMPL_H -#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/DocumentImpl.h b/include/DOM/Simple/DocumentImpl.hpp similarity index 97% rename from include/DOM/Simple/DocumentImpl.h rename to include/DOM/Simple/DocumentImpl.hpp index 61e18765..b0e8784e 100644 --- a/include/DOM/Simple/DocumentImpl.h +++ b/include/DOM/Simple/DocumentImpl.hpp @@ -2,19 +2,19 @@ #define JEZUK_SimpleDOM_DOCUMENTIMPL_H -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include diff --git a/include/DOM/Simple/DocumentTypeImpl.h b/include/DOM/Simple/DocumentTypeImpl.hpp similarity index 98% rename from include/DOM/Simple/DocumentTypeImpl.h rename to include/DOM/Simple/DocumentTypeImpl.hpp index 0a0e721f..52900343 100644 --- a/include/DOM/Simple/DocumentTypeImpl.h +++ b/include/DOM/Simple/DocumentTypeImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_DOCUMENTTYPEIMPL_H #define JEZUK_SimpleDOM_DOCUMENTTYPEIMPL_H -#include -#include +#include +#include #include namespace SimpleDOM diff --git a/include/DOM/Simple/ElementByTagImpl.h b/include/DOM/Simple/ElementByTagImpl.hpp similarity index 98% rename from include/DOM/Simple/ElementByTagImpl.h rename to include/DOM/Simple/ElementByTagImpl.hpp index f761b860..2d8d4752 100644 --- a/include/DOM/Simple/ElementByTagImpl.h +++ b/include/DOM/Simple/ElementByTagImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_ELEMENTBYTAGIMPL_H #define JEZUK_SimpleDOM_ELEMENTBYTAGIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/ElementImpl.h b/include/DOM/Simple/ElementImpl.hpp similarity index 97% rename from include/DOM/Simple/ElementImpl.h rename to include/DOM/Simple/ElementImpl.hpp index 08c8a159..93fb0679 100644 --- a/include/DOM/Simple/ElementImpl.h +++ b/include/DOM/Simple/ElementImpl.hpp @@ -1,10 +1,10 @@ #ifndef JEZUK_SimpleDOM_ELEMENTIMPL_H #define JEZUK_SimpleDOM_ELEMENTIMPL_H -#include -#include -#include -#include +#include +#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/ElementNSImpl.h b/include/DOM/Simple/ElementNSImpl.hpp similarity index 98% rename from include/DOM/Simple/ElementNSImpl.h rename to include/DOM/Simple/ElementNSImpl.hpp index 290de2ee..2d0a6de1 100644 --- a/include/DOM/Simple/ElementNSImpl.h +++ b/include/DOM/Simple/ElementNSImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_ELEMENTNSIMPL_H #define JEZUK_SimpleDOM_ELEMENTNSIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/EntityImpl.h b/include/DOM/Simple/EntityImpl.hpp similarity index 97% rename from include/DOM/Simple/EntityImpl.h rename to include/DOM/Simple/EntityImpl.hpp index f511d68a..6d1d8954 100644 --- a/include/DOM/Simple/EntityImpl.h +++ b/include/DOM/Simple/EntityImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_ENTITYIMPL_H #define JEZUK_SimpleDOM_ENTITYIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/EntityReferenceImpl.h b/include/DOM/Simple/EntityReferenceImpl.hpp similarity index 98% rename from include/DOM/Simple/EntityReferenceImpl.h rename to include/DOM/Simple/EntityReferenceImpl.hpp index 3417a030..4c0bcde8 100644 --- a/include/DOM/Simple/EntityReferenceImpl.h +++ b/include/DOM/Simple/EntityReferenceImpl.hpp @@ -1,7 +1,7 @@ #ifndef JEZUK_SimpleDOM_ENTITYREFERENCEIMPL_H #define JEZUK_SimpleDOM_ENTITYREFERENCEIMPL_H -#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/Helpers.h b/include/DOM/Simple/Helpers.hpp similarity index 98% rename from include/DOM/Simple/Helpers.h rename to include/DOM/Simple/Helpers.hpp index da5aa76a..630bd6b4 100644 --- a/include/DOM/Simple/Helpers.h +++ b/include/DOM/Simple/Helpers.hpp @@ -1,7 +1,7 @@ #ifndef JEZUK_SimpleDOM_HELPERSH #define JEZUK_SimpleDOM_HELPERSH -#include +#include #include namespace SimpleDOM diff --git a/include/DOM/Simple/NamedNodeMapImpl.h b/include/DOM/Simple/NamedNodeMapImpl.hpp similarity index 98% rename from include/DOM/Simple/NamedNodeMapImpl.h rename to include/DOM/Simple/NamedNodeMapImpl.hpp index 5ea65e92..7abf63c9 100644 --- a/include/DOM/Simple/NamedNodeMapImpl.h +++ b/include/DOM/Simple/NamedNodeMapImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_NAMEDNODEMAPIMPL_H #define JEZUK_SimpleDOM_NAMEDNODEMAPIMPL_H -#include -#include +#include +#include #include #include #include diff --git a/include/DOM/Simple/NodeImpl.h b/include/DOM/Simple/NodeImpl.hpp similarity index 99% rename from include/DOM/Simple/NodeImpl.h rename to include/DOM/Simple/NodeImpl.hpp index b50ef7b8..7fc79047 100644 --- a/include/DOM/Simple/NodeImpl.h +++ b/include/DOM/Simple/NodeImpl.hpp @@ -7,8 +7,8 @@ // $Id$ //////////////////////////// -#include -#include +#include +#include #include #include diff --git a/include/DOM/Simple/NotationImpl.h b/include/DOM/Simple/NotationImpl.hpp similarity index 97% rename from include/DOM/Simple/NotationImpl.h rename to include/DOM/Simple/NotationImpl.hpp index 8902cd8e..74e6c50b 100644 --- a/include/DOM/Simple/NotationImpl.h +++ b/include/DOM/Simple/NotationImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_NOTATIONIMPL_H #define JEZUK_SimpleDOM_NOTATIONIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/ProcessingInstructionImpl.h b/include/DOM/Simple/ProcessingInstructionImpl.hpp similarity index 96% rename from include/DOM/Simple/ProcessingInstructionImpl.h rename to include/DOM/Simple/ProcessingInstructionImpl.hpp index 8b40beba..893a2e14 100644 --- a/include/DOM/Simple/ProcessingInstructionImpl.h +++ b/include/DOM/Simple/ProcessingInstructionImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_PROCESSINGINSTRUCTIONIMPL_H #define JEZUK_SimpleDOM_PROCESSINGINSTRUCTIONIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Simple/TextImpl.h b/include/DOM/Simple/TextImpl.hpp similarity index 96% rename from include/DOM/Simple/TextImpl.h rename to include/DOM/Simple/TextImpl.hpp index a468c801..a1be926b 100644 --- a/include/DOM/Simple/TextImpl.h +++ b/include/DOM/Simple/TextImpl.hpp @@ -1,8 +1,8 @@ #ifndef JEZUK_SimpleDOM_TEXTIMPL_H #define JEZUK_SimpleDOM_TEXTIMPL_H -#include -#include +#include +#include namespace SimpleDOM { diff --git a/include/DOM/Text.h b/include/DOM/Text.hpp similarity index 97% rename from include/DOM/Text.h rename to include/DOM/Text.hpp index 62732057..396b237c 100644 --- a/include/DOM/Text.h +++ b/include/DOM/Text.hpp @@ -7,7 +7,7 @@ // $Id$ //////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Traversal/DocumentTraversal.h b/include/DOM/Traversal/DocumentTraversal.hpp similarity index 96% rename from include/DOM/Traversal/DocumentTraversal.h rename to include/DOM/Traversal/DocumentTraversal.hpp index d513681e..c4b83e02 100644 --- a/include/DOM/Traversal/DocumentTraversal.h +++ b/include/DOM/Traversal/DocumentTraversal.hpp @@ -7,11 +7,11 @@ // $Id$ ///////////////////////////////////////// -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include namespace DOM { diff --git a/include/DOM/Traversal/DocumentTraversalImpl.h b/include/DOM/Traversal/DocumentTraversalImpl.hpp similarity index 94% rename from include/DOM/Traversal/DocumentTraversalImpl.h rename to include/DOM/Traversal/DocumentTraversalImpl.hpp index 8e8633a4..bd1458fb 100644 --- a/include/DOM/Traversal/DocumentTraversalImpl.h +++ b/include/DOM/Traversal/DocumentTraversalImpl.hpp @@ -7,7 +7,7 @@ // $Id: TreeWalker.h 2 2002-06-21 11:16:28Z jez_higgins $ ///////////////////////////////////////// -#include +#include namespace DOM { diff --git a/include/DOM/Traversal/NodeFilter.h b/include/DOM/Traversal/NodeFilter.hpp similarity index 100% rename from include/DOM/Traversal/NodeFilter.h rename to include/DOM/Traversal/NodeFilter.hpp diff --git a/include/DOM/Traversal/NodeIterator.h b/include/DOM/Traversal/NodeIterator.hpp similarity index 97% rename from include/DOM/Traversal/NodeIterator.h rename to include/DOM/Traversal/NodeIterator.hpp index 582da269..f4c5ec9a 100644 --- a/include/DOM/Traversal/NodeIterator.h +++ b/include/DOM/Traversal/NodeIterator.hpp @@ -7,8 +7,8 @@ // $Id$ ///////////////////////////////////////// -#include -#include +#include +#include namespace DOM { diff --git a/include/DOM/Traversal/TraversalImpl.h b/include/DOM/Traversal/TraversalImpl.hpp similarity index 100% rename from include/DOM/Traversal/TraversalImpl.h rename to include/DOM/Traversal/TraversalImpl.hpp diff --git a/include/DOM/Traversal/TreeWalker.h b/include/DOM/Traversal/TreeWalker.hpp similarity index 96% rename from include/DOM/Traversal/TreeWalker.h rename to include/DOM/Traversal/TreeWalker.hpp index 57cb38cf..de1aeb19 100644 --- a/include/DOM/Traversal/TreeWalker.h +++ b/include/DOM/Traversal/TreeWalker.hpp @@ -7,9 +7,9 @@ // $Id$ ///////////////////////////////////////// -#include -#include -#include +#include +#include +#include namespace DOM { diff --git a/include/DOM/Traversal/TreeWalkerImpl.h b/include/DOM/Traversal/TreeWalkerImpl.hpp similarity index 95% rename from include/DOM/Traversal/TreeWalkerImpl.h rename to include/DOM/Traversal/TreeWalkerImpl.hpp index cd66a5f1..23a472d1 100644 --- a/include/DOM/Traversal/TreeWalkerImpl.h +++ b/include/DOM/Traversal/TreeWalkerImpl.hpp @@ -7,7 +7,7 @@ // $Id: TreeWalker.h 2 2002-06-21 11:16:28Z jez_higgins $ ///////////////////////////////////////// -#include +#include namespace DOM diff --git a/include/DOM/Utils/Stream.h b/include/DOM/Utils/Stream.hpp similarity index 99% rename from include/DOM/Utils/Stream.h rename to include/DOM/Utils/Stream.hpp index 47baaf20..ffb7adcf 100644 --- a/include/DOM/Utils/Stream.h +++ b/include/DOM/Utils/Stream.hpp @@ -26,7 +26,7 @@ #include #include -#include +#include #include namespace DOM diff --git a/include/SAX/AttributeList.h b/include/SAX/AttributeList.hpp similarity index 99% rename from include/SAX/AttributeList.h rename to include/SAX/AttributeList.hpp index e548ecf3..04ca95ea 100644 --- a/include/SAX/AttributeList.h +++ b/include/SAX/AttributeList.hpp @@ -6,7 +6,7 @@ #include -#include +#include namespace SAX { diff --git a/include/SAX/Attributes.h b/include/SAX/Attributes.hpp similarity index 99% rename from include/SAX/Attributes.h rename to include/SAX/Attributes.hpp index 65630de2..85cbc4fa 100644 --- a/include/SAX/Attributes.h +++ b/include/SAX/Attributes.hpp @@ -6,7 +6,7 @@ #include -#include +#include namespace SAX { diff --git a/include/SAX/ContentHandler.h b/include/SAX/ContentHandler.hpp similarity index 99% rename from include/SAX/ContentHandler.h rename to include/SAX/ContentHandler.hpp index f2cdfbb1..2c4c8e16 100644 --- a/include/SAX/ContentHandler.h +++ b/include/SAX/ContentHandler.hpp @@ -6,7 +6,7 @@ #include -#include +#include namespace SAX { diff --git a/include/SAX/DTDHandler.h b/include/SAX/DTDHandler.hpp similarity index 99% rename from include/SAX/DTDHandler.h rename to include/SAX/DTDHandler.hpp index 71a0b716..6a0046fd 100644 --- a/include/SAX/DTDHandler.h +++ b/include/SAX/DTDHandler.hpp @@ -6,7 +6,7 @@ #include -#include +#include namespace SAX { diff --git a/include/SAX/DocumentHandler.h b/include/SAX/DocumentHandler.hpp similarity index 98% rename from include/SAX/DocumentHandler.h rename to include/SAX/DocumentHandler.hpp index 72689668..878fd5f0 100644 --- a/include/SAX/DocumentHandler.h +++ b/include/SAX/DocumentHandler.hpp @@ -3,7 +3,7 @@ // SAX document handler. // $Id$ -#include +#include namespace SAX { diff --git a/include/SAX/EntityResolver.h b/include/SAX/EntityResolver.hpp similarity index 98% rename from include/SAX/EntityResolver.h rename to include/SAX/EntityResolver.hpp index a988e35f..b6bdd0df 100644 --- a/include/SAX/EntityResolver.h +++ b/include/SAX/EntityResolver.hpp @@ -6,9 +6,9 @@ #include -#include +#include -#include +#include namespace SAX { diff --git a/include/SAX/ErrorHandler.h b/include/SAX/ErrorHandler.hpp similarity index 98% rename from include/SAX/ErrorHandler.h rename to include/SAX/ErrorHandler.hpp index e219b581..48d07b72 100644 --- a/include/SAX/ErrorHandler.h +++ b/include/SAX/ErrorHandler.hpp @@ -6,9 +6,9 @@ #include -#include +#include -#include +#include namespace SAX { diff --git a/include/SAX/HandlerBase.h b/include/SAX/HandlerBase.hpp similarity index 97% rename from include/SAX/HandlerBase.h rename to include/SAX/HandlerBase.hpp index 0b21e85f..0ede8a37 100644 --- a/include/SAX/HandlerBase.h +++ b/include/SAX/HandlerBase.hpp @@ -5,15 +5,15 @@ #include -#include +#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/IStreamHandle.h b/include/SAX/IStreamHandle.hpp similarity index 99% rename from include/SAX/IStreamHandle.h rename to include/SAX/IStreamHandle.hpp index 8b8f4c2b..b6dc701e 100644 --- a/include/SAX/IStreamHandle.h +++ b/include/SAX/IStreamHandle.hpp @@ -6,7 +6,7 @@ #ifndef ARABICA_ISTREAMHANDLE_H #define ARABICA_ISTREAMHANDLE_H -#include +#include #include #include #include diff --git a/include/SAX/InputSource.h b/include/SAX/InputSource.hpp similarity index 99% rename from include/SAX/InputSource.h rename to include/SAX/InputSource.hpp index 7c3f6dd7..bcb59867 100644 --- a/include/SAX/InputSource.h +++ b/include/SAX/InputSource.hpp @@ -7,8 +7,8 @@ #include #include -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/Locator.h b/include/SAX/Locator.hpp similarity index 99% rename from include/SAX/Locator.h rename to include/SAX/Locator.hpp index 88466929..5af98e45 100644 --- a/include/SAX/Locator.h +++ b/include/SAX/Locator.hpp @@ -6,7 +6,7 @@ #include -#include +#include namespace SAX { diff --git a/include/SAX/Parser.h b/include/SAX/Parser.hpp similarity index 99% rename from include/SAX/Parser.h rename to include/SAX/Parser.hpp index 8a383b40..06a7b817 100644 --- a/include/SAX/Parser.h +++ b/include/SAX/Parser.hpp @@ -8,7 +8,7 @@ #include -#include +#include #include diff --git a/include/SAX/ParserConfig.h b/include/SAX/ParserConfig.hpp similarity index 89% rename from include/SAX/ParserConfig.h rename to include/SAX/ParserConfig.hpp index 6f9d6203..ce04404d 100644 --- a/include/SAX/ParserConfig.h +++ b/include/SAX/ParserConfig.hpp @@ -2,7 +2,7 @@ #define ARABICA_PARSERCONFIG_H #ifdef USE_LIBXML2 -#include +#include #undef DEF_SAX_P #define DEF_SAX_P libxml2_wrapper #ifdef _MSC_VER @@ -16,13 +16,13 @@ #error "Can only use MSXML on Windows" #endif #pragma message("Including MSXML") -#include +#include #undef DEF_SAX_P #define DEF_SAX_P msxml2_wrapper #endif #ifdef USE_XERCES -#include +#include #undef DEF_SAX_P #define DEF_SAX_P xerces_wrapper #ifdef _MSC_VER @@ -39,13 +39,13 @@ #ifdef _MSC_VER #pragma message("Including Garden") #endif -#include +#include #undef DEF_SAX_P #define DEF_SAX_P Garden #endif #ifdef USE_EXPAT -#include +#include #undef DEF_SAX_P #define DEF_SAX_P expat_wrapper #ifdef _MSC_VER diff --git a/include/SAX/SAXException.h b/include/SAX/SAXException.hpp similarity index 97% rename from include/SAX/SAXException.h rename to include/SAX/SAXException.hpp index 66f98029..53f182f0 100644 --- a/include/SAX/SAXException.h +++ b/include/SAX/SAXException.hpp @@ -6,7 +6,7 @@ #include -#include +#include namespace SAX { diff --git a/include/SAX/SAXNotRecognizedException.h b/include/SAX/SAXNotRecognizedException.hpp similarity index 97% rename from include/SAX/SAXNotRecognizedException.h rename to include/SAX/SAXNotRecognizedException.hpp index 45d4e1ad..b0be05ba 100644 --- a/include/SAX/SAXNotRecognizedException.h +++ b/include/SAX/SAXNotRecognizedException.hpp @@ -5,7 +5,7 @@ // $Id$ -#include +#include namespace SAX { diff --git a/include/SAX/SAXNotSupportedException.h b/include/SAX/SAXNotSupportedException.hpp similarity index 97% rename from include/SAX/SAXNotSupportedException.h rename to include/SAX/SAXNotSupportedException.hpp index a22203ed..9af5b47f 100644 --- a/include/SAX/SAXNotSupportedException.h +++ b/include/SAX/SAXNotSupportedException.hpp @@ -5,7 +5,7 @@ // $Id$ -#include +#include namespace SAX { diff --git a/include/SAX/SAXParseException.h b/include/SAX/SAXParseException.hpp similarity index 98% rename from include/SAX/SAXParseException.h rename to include/SAX/SAXParseException.hpp index 1c3abed6..6c45fcca 100644 --- a/include/SAX/SAXParseException.h +++ b/include/SAX/SAXParseException.hpp @@ -4,10 +4,10 @@ // SAXParseException.h // $Id$ -#include -#include +#include +#include #include -#include +#include namespace SAX { diff --git a/include/SAX/XMLFilter.h b/include/SAX/XMLFilter.hpp similarity index 96% rename from include/SAX/XMLFilter.h rename to include/SAX/XMLFilter.hpp index e4e09e9d..84d0426e 100644 --- a/include/SAX/XMLFilter.h +++ b/include/SAX/XMLFilter.hpp @@ -5,9 +5,9 @@ // $Id$ #include -#include +#include -#include +#include namespace SAX { diff --git a/include/SAX/XMLReader.h b/include/SAX/XMLReader.hpp similarity index 97% rename from include/SAX/XMLReader.h rename to include/SAX/XMLReader.hpp index c411db13..d7177ff4 100644 --- a/include/SAX/XMLReader.h +++ b/include/SAX/XMLReader.hpp @@ -7,16 +7,16 @@ #include #include -#include +#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include namespace SAX @@ -434,10 +434,10 @@ public: }; // namespace SAX -/* Included to ensure that #include defines a class called +/* Included to ensure that #include defines a class called * XMLReader. */ -#include +#include #endif // end of file diff --git a/include/SAX/ext/Attributes2.h b/include/SAX/ext/Attributes2.hpp similarity index 97% rename from include/SAX/ext/Attributes2.h rename to include/SAX/ext/Attributes2.hpp index 9cc03d78..04fcac57 100644 --- a/include/SAX/ext/Attributes2.h +++ b/include/SAX/ext/Attributes2.hpp @@ -4,8 +4,8 @@ // Attributes2.h // $Id$ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/ext/DeclHandler.h b/include/SAX/ext/DeclHandler.hpp similarity index 99% rename from include/SAX/ext/DeclHandler.h rename to include/SAX/ext/DeclHandler.hpp index 360b13c3..8c6df60d 100644 --- a/include/SAX/ext/DeclHandler.h +++ b/include/SAX/ext/DeclHandler.hpp @@ -5,7 +5,7 @@ // $Id$ #include -#include +#include namespace SAX { diff --git a/include/SAX/ext/DefaultHandler2.h b/include/SAX/ext/DefaultHandler2.hpp similarity index 91% rename from include/SAX/ext/DefaultHandler2.h rename to include/SAX/ext/DefaultHandler2.hpp index 11344105..dda7b9aa 100644 --- a/include/SAX/ext/DefaultHandler2.h +++ b/include/SAX/ext/DefaultHandler2.hpp @@ -4,10 +4,10 @@ // DefaultHandler.h // $Id$ -#include -#include -#include -#include +#include +#include +#include +#include #pragma message("DefaultHandler2 is deprecated. You can now use DefaultHandler instead.") diff --git a/include/SAX/ext/LexicalHandler.h b/include/SAX/ext/LexicalHandler.hpp similarity index 99% rename from include/SAX/ext/LexicalHandler.h rename to include/SAX/ext/LexicalHandler.hpp index 4bcadb04..eb43783b 100644 --- a/include/SAX/ext/LexicalHandler.h +++ b/include/SAX/ext/LexicalHandler.hpp @@ -5,7 +5,7 @@ // $Id$ #include -#include +#include namespace SAX { diff --git a/include/SAX/ext/Locator2.h b/include/SAX/ext/Locator2.hpp similarity index 97% rename from include/SAX/ext/Locator2.h rename to include/SAX/ext/Locator2.hpp index c96d9f98..51ee16ff 100644 --- a/include/SAX/ext/Locator2.h +++ b/include/SAX/ext/Locator2.hpp @@ -4,8 +4,8 @@ // Locator2.h // $Id$ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/ext/ProgressiveParser.h b/include/SAX/ext/ProgressiveParser.hpp similarity index 99% rename from include/SAX/ext/ProgressiveParser.h rename to include/SAX/ext/ProgressiveParser.hpp index 820d1ef3..40884620 100644 --- a/include/SAX/ext/ProgressiveParser.h +++ b/include/SAX/ext/ProgressiveParser.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_PROGRESSIVE_PARSER_H #define ARABICA_PROGRESSIVE_PARSER_H -#include +#include #include // $Id$ diff --git a/include/SAX/filter/NamespaceTracker.hpp b/include/SAX/filter/NamespaceTracker.hpp index 9e1d407f..b2cfafa9 100644 --- a/include/SAX/filter/NamespaceTracker.hpp +++ b/include/SAX/filter/NamespaceTracker.hpp @@ -2,10 +2,10 @@ #define ARABICA_SAX_NAMESPACE_TRACKER_HPP #include -#include -#include -#include -#include +#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/filter/PYXWriter.hpp b/include/SAX/filter/PYXWriter.hpp index d7349748..8c6d1b22 100644 --- a/include/SAX/filter/PYXWriter.hpp +++ b/include/SAX/filter/PYXWriter.hpp @@ -1,9 +1,9 @@ #ifndef ARABICA_SAX_PYX_WRITER_H #define ARABICA_SAX_PYX_WRITER_H -#include -#include -#include +#include +#include +#include #include namespace SAX { diff --git a/include/SAX/filter/TextCoalescer.hpp b/include/SAX/filter/TextCoalescer.hpp index b8c736a2..b8d98a57 100644 --- a/include/SAX/filter/TextCoalescer.hpp +++ b/include/SAX/filter/TextCoalescer.hpp @@ -1,9 +1,9 @@ #ifndef ARABICA_TEXT_COALESCER_HPP #define ARABICA_TEXT_COALESCER_HPP -#include -#include -#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/filter/TextOnly.hpp b/include/SAX/filter/TextOnly.hpp index c54fb4c1..dd5de82e 100644 --- a/include/SAX/filter/TextOnly.hpp +++ b/include/SAX/filter/TextOnly.hpp @@ -1,9 +1,9 @@ #ifndef ARABICA_TEXT_ONLY_HPP #define ARABICA_TEXT_ONLY_HPP -#include -#include -#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/filter/WhitespaceStripperFilter.hpp b/include/SAX/filter/WhitespaceStripperFilter.hpp index 7a62bea9..f662466e 100644 --- a/include/SAX/filter/WhitespaceStripperFilter.hpp +++ b/include/SAX/filter/WhitespaceStripperFilter.hpp @@ -1,7 +1,7 @@ #ifndef WHITESPACE_STRIPPER_FILTER_HPP #define WHITESPACE_STRIPPER_FILTER_HPP -#include +#include #include diff --git a/include/SAX/filter/Writer.h b/include/SAX/filter/Writer.hpp similarity index 98% rename from include/SAX/filter/Writer.h rename to include/SAX/filter/Writer.hpp index 4192f7b7..a6ce4f2b 100644 --- a/include/SAX/filter/Writer.h +++ b/include/SAX/filter/Writer.hpp @@ -1,12 +1,12 @@ #ifndef ARABICA_SAX_WRITER_H #define ARABICA_SAX_WRITER_H -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include #include #include #include diff --git a/include/SAX/filter/XMLBaseTracker.hpp b/include/SAX/filter/XMLBaseTracker.hpp index b6cf3eb6..5adcd617 100644 --- a/include/SAX/filter/XMLBaseTracker.hpp +++ b/include/SAX/filter/XMLBaseTracker.hpp @@ -1,10 +1,10 @@ #ifndef ARABICA_SAX_XMLBASE_TRACKER_HPP #define ARABICA_SAX_XMLBASE_TRACKER_HPP -#include -#include -#include -#include +#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/helpers/AttributeDefaults.h b/include/SAX/helpers/AttributeDefaults.hpp similarity index 91% rename from include/SAX/helpers/AttributeDefaults.h rename to include/SAX/helpers/AttributeDefaults.hpp index e5a793f8..0a4aea38 100644 --- a/include/SAX/helpers/AttributeDefaults.h +++ b/include/SAX/helpers/AttributeDefaults.hpp @@ -4,8 +4,8 @@ * $Id$ */ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/helpers/AttributeListImpl.h b/include/SAX/helpers/AttributeListImpl.hpp similarity index 99% rename from include/SAX/helpers/AttributeListImpl.h rename to include/SAX/helpers/AttributeListImpl.hpp index 09d20d92..6872cc97 100644 --- a/include/SAX/helpers/AttributeListImpl.h +++ b/include/SAX/helpers/AttributeListImpl.hpp @@ -3,8 +3,8 @@ // SAX default implementation for AttributeList. // $Id$ -#include -#include +#include +#include #include #include diff --git a/include/SAX/helpers/AttributeTypes.h b/include/SAX/helpers/AttributeTypes.hpp similarity index 95% rename from include/SAX/helpers/AttributeTypes.h rename to include/SAX/helpers/AttributeTypes.hpp index 67369e04..c437952f 100644 --- a/include/SAX/helpers/AttributeTypes.h +++ b/include/SAX/helpers/AttributeTypes.hpp @@ -4,8 +4,8 @@ * $Id$ */ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/helpers/AttributesImpl.h b/include/SAX/helpers/AttributesImpl.hpp similarity index 99% rename from include/SAX/helpers/AttributesImpl.h rename to include/SAX/helpers/AttributesImpl.hpp index aab8d666..7102250a 100644 --- a/include/SAX/helpers/AttributesImpl.h +++ b/include/SAX/helpers/AttributesImpl.hpp @@ -4,8 +4,8 @@ // AttributesImpl.h - default implementation of Attributes. // $Id$ -#include -#include +#include +#include #include namespace SAX diff --git a/include/SAX/helpers/CatchErrorHandler.h b/include/SAX/helpers/CatchErrorHandler.hpp similarity index 97% rename from include/SAX/helpers/CatchErrorHandler.h rename to include/SAX/helpers/CatchErrorHandler.hpp index ab582247..58d85116 100644 --- a/include/SAX/helpers/CatchErrorHandler.h +++ b/include/SAX/helpers/CatchErrorHandler.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_CATCH_ERROR_HANDLER_H #define ARABICA_CATCH_ERROR_HANDLER_H -#include +#include /** * An ErrorHandler implementation that keeps hold of any errors for later reporting. diff --git a/include/SAX/helpers/DefaultHandler.h b/include/SAX/helpers/DefaultHandler.hpp similarity index 98% rename from include/SAX/helpers/DefaultHandler.h rename to include/SAX/helpers/DefaultHandler.hpp index 7784ec10..c90aee17 100644 --- a/include/SAX/helpers/DefaultHandler.h +++ b/include/SAX/helpers/DefaultHandler.hpp @@ -4,17 +4,17 @@ // DefaultHandler.h // $Id$ -#include +#include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/helpers/FeatureNames.h b/include/SAX/helpers/FeatureNames.hpp similarity index 98% rename from include/SAX/helpers/FeatureNames.h rename to include/SAX/helpers/FeatureNames.hpp index c58212ea..9474ff30 100644 --- a/include/SAX/helpers/FeatureNames.h +++ b/include/SAX/helpers/FeatureNames.hpp @@ -4,8 +4,8 @@ * $Id$ */ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/helpers/InputSourceResolver.h b/include/SAX/helpers/InputSourceResolver.hpp similarity index 96% rename from include/SAX/helpers/InputSourceResolver.h rename to include/SAX/helpers/InputSourceResolver.hpp index 92ef67c1..b35534f5 100644 --- a/include/SAX/helpers/InputSourceResolver.h +++ b/include/SAX/helpers/InputSourceResolver.hpp @@ -1,10 +1,10 @@ #ifndef ARABICA_INPUT_SOURCE_RESOLVER_H #define ARABICA_INPUT_SOURCE_RESOLVER_H -#include +#include #include #include -#include +#include class InputSourceResolver { diff --git a/include/SAX/helpers/LocatorImpl.h b/include/SAX/helpers/LocatorImpl.hpp similarity index 98% rename from include/SAX/helpers/LocatorImpl.h rename to include/SAX/helpers/LocatorImpl.hpp index 63719ced..a89a54f2 100644 --- a/include/SAX/helpers/LocatorImpl.h +++ b/include/SAX/helpers/LocatorImpl.hpp @@ -4,9 +4,9 @@ // LocatorImpl.h // $Id$ -#include +#include #include -#include +#include namespace SAX { diff --git a/include/SAX/helpers/NamespaceSupport.h b/include/SAX/helpers/NamespaceSupport.hpp similarity index 99% rename from include/SAX/helpers/NamespaceSupport.h rename to include/SAX/helpers/NamespaceSupport.hpp index ea7d6897..689beef6 100644 --- a/include/SAX/helpers/NamespaceSupport.h +++ b/include/SAX/helpers/NamespaceSupport.hpp @@ -5,7 +5,7 @@ * $Id$ */ -#include +#include #include #include #include diff --git a/include/SAX/helpers/ParserAdaptor.h b/include/SAX/helpers/ParserAdaptor.hpp similarity index 97% rename from include/SAX/helpers/ParserAdaptor.h rename to include/SAX/helpers/ParserAdaptor.hpp index 0c1d0a63..cb57af90 100644 --- a/include/SAX/helpers/ParserAdaptor.h +++ b/include/SAX/helpers/ParserAdaptor.hpp @@ -5,16 +5,16 @@ // Adapts a SAX1 Parser to a SAX2 XMLReader. // $Id$ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include namespace SAX diff --git a/include/SAX/helpers/PropertyNames.h b/include/SAX/helpers/PropertyNames.hpp similarity index 93% rename from include/SAX/helpers/PropertyNames.h rename to include/SAX/helpers/PropertyNames.hpp index 394c712e..35a94807 100644 --- a/include/SAX/helpers/PropertyNames.h +++ b/include/SAX/helpers/PropertyNames.hpp @@ -4,9 +4,9 @@ * $Id$ */ -#include -#include -#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/helpers/XMLBaseSupport.h b/include/SAX/helpers/XMLBaseSupport.hpp similarity index 98% rename from include/SAX/helpers/XMLBaseSupport.h rename to include/SAX/helpers/XMLBaseSupport.hpp index f0dd0df2..1d3b582a 100644 --- a/include/SAX/helpers/XMLBaseSupport.h +++ b/include/SAX/helpers/XMLBaseSupport.hpp @@ -19,7 +19,7 @@ #include #include #include -#include +#include #include namespace SAX diff --git a/include/SAX/helpers/XMLFilterImpl.h b/include/SAX/helpers/XMLFilterImpl.hpp similarity index 99% rename from include/SAX/helpers/XMLFilterImpl.h rename to include/SAX/helpers/XMLFilterImpl.hpp index 6c6d12ec..1be6f0b2 100644 --- a/include/SAX/helpers/XMLFilterImpl.h +++ b/include/SAX/helpers/XMLFilterImpl.hpp @@ -3,12 +3,12 @@ // XMLFilterImpl.h -#include +#include #include -#include -#include -#include -#include +#include +#include +#include +#include namespace SAX { diff --git a/include/SAX/parsers/saxgarden.h b/include/SAX/parsers/saxgarden.hpp similarity index 98% rename from include/SAX/parsers/saxgarden.h rename to include/SAX/parsers/saxgarden.hpp index a77fd365..e4193591 100644 --- a/include/SAX/parsers/saxgarden.h +++ b/include/SAX/parsers/saxgarden.hpp @@ -1,19 +1,19 @@ #ifndef ARABICA_GARDEN_H #define ARABICA_GARDEN_H -#include +#include #include #include #include #include #include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include #include namespace SAX { diff --git a/include/SAX/saxfwd.h b/include/SAX/saxfwd.hpp similarity index 100% rename from include/SAX/saxfwd.h rename to include/SAX/saxfwd.hpp diff --git a/include/SAX/wrappers/XercesFeatureNames.h b/include/SAX/wrappers/XercesFeatureNames.hpp similarity index 98% rename from include/SAX/wrappers/XercesFeatureNames.h rename to include/SAX/wrappers/XercesFeatureNames.hpp index ebbb1a56..c8fb35a9 100644 --- a/include/SAX/wrappers/XercesFeatureNames.h +++ b/include/SAX/wrappers/XercesFeatureNames.hpp @@ -4,8 +4,8 @@ * $Id$ */ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/wrappers/XercesPropertyNames.h b/include/SAX/wrappers/XercesPropertyNames.hpp similarity index 97% rename from include/SAX/wrappers/XercesPropertyNames.h rename to include/SAX/wrappers/XercesPropertyNames.hpp index 72d4fc06..0d5a673e 100644 --- a/include/SAX/wrappers/XercesPropertyNames.h +++ b/include/SAX/wrappers/XercesPropertyNames.hpp @@ -4,8 +4,8 @@ * $Id$ */ -#include -#include +#include +#include namespace SAX { diff --git a/include/SAX/wrappers/saxexpat.h b/include/SAX/wrappers/saxexpat.hpp similarity index 98% rename from include/SAX/wrappers/saxexpat.h rename to include/SAX/wrappers/saxexpat.hpp index 80653968..29ea3b7e 100644 --- a/include/SAX/wrappers/saxexpat.h +++ b/include/SAX/wrappers/saxexpat.hpp @@ -4,24 +4,24 @@ // A SAX2 wrapper class for expat. //--------------------------------------------------------------------------- -#include -#include +#include +#include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include diff --git a/include/SAX/wrappers/saxlibxml2.h b/include/SAX/wrappers/saxlibxml2.hpp similarity index 98% rename from include/SAX/wrappers/saxlibxml2.h rename to include/SAX/wrappers/saxlibxml2.hpp index cf076cac..2398733a 100644 --- a/include/SAX/wrappers/saxlibxml2.h +++ b/include/SAX/wrappers/saxlibxml2.hpp @@ -6,25 +6,25 @@ // $Id$ //////////////////////////////////////////////////////////////// -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include #include #include #include #include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include #include namespace SAX diff --git a/include/SAX/wrappers/saxmsxml2.h b/include/SAX/wrappers/saxmsxml2.hpp similarity index 99% rename from include/SAX/wrappers/saxmsxml2.h rename to include/SAX/wrappers/saxmsxml2.hpp index aac1db2d..f2a30e3a 100644 --- a/include/SAX/wrappers/saxmsxml2.h +++ b/include/SAX/wrappers/saxmsxml2.hpp @@ -4,14 +4,14 @@ // A SAX2 wrapper class for MSXML component. //--------------------------------------------------------------------------- -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include diff --git a/include/SAX/wrappers/saxxerces.h b/include/SAX/wrappers/saxxerces.hpp similarity index 98% rename from include/SAX/wrappers/saxxerces.h rename to include/SAX/wrappers/saxxerces.hpp index 027cfbf5..811f2560 100644 --- a/include/SAX/wrappers/saxxerces.h +++ b/include/SAX/wrappers/saxxerces.hpp @@ -40,18 +40,18 @@ std::ostream& operator<<(std::ostream& o, const std::type_info& ti) #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include // Xerces Includes diff --git a/include/Utils/StringAdaptor.h b/include/Utils/StringAdaptor.hpp similarity index 98% rename from include/Utils/StringAdaptor.h rename to include/Utils/StringAdaptor.hpp index 22d09ed8..de9c57d0 100644 --- a/include/Utils/StringAdaptor.h +++ b/include/Utils/StringAdaptor.hpp @@ -4,10 +4,10 @@ * $Id$ */ -#include +#include #include -#include -#include +#include +#include #include namespace Arabica diff --git a/include/Utils/base64codecvt.h b/include/Utils/base64codecvt.hpp similarity index 96% rename from include/Utils/base64codecvt.h rename to include/Utils/base64codecvt.hpp index 2bfaaea8..bd15de4c 100644 --- a/include/Utils/base64codecvt.h +++ b/include/Utils/base64codecvt.hpp @@ -7,10 +7,10 @@ /////////////////////////////////////////// #include -#include +#include #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/convert_adaptor.h b/include/Utils/convert_adaptor.hpp similarity index 99% rename from include/Utils/convert_adaptor.h rename to include/Utils/convert_adaptor.hpp index fc1b6eaa..b79d0bf7 100644 --- a/include/Utils/convert_adaptor.h +++ b/include/Utils/convert_adaptor.hpp @@ -19,9 +19,9 @@ #include #include -#include +#include #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/convertstream.h b/include/Utils/convertstream.hpp similarity index 99% rename from include/Utils/convertstream.h rename to include/Utils/convertstream.hpp index b7b993bc..08309a44 100644 --- a/include/Utils/convertstream.h +++ b/include/Utils/convertstream.hpp @@ -42,7 +42,7 @@ // //////////////////////////////////////////////////////////// -#include +#include #include #include #include diff --git a/include/Utils/impl/VS6Workaround.h b/include/Utils/impl/VS6Workaround.hpp similarity index 100% rename from include/Utils/impl/VS6Workaround.h rename to include/Utils/impl/VS6Workaround.hpp diff --git a/include/Utils/impl/codecvt_specialisations.h b/include/Utils/impl/codecvt_specialisations.hpp similarity index 100% rename from include/Utils/impl/codecvt_specialisations.h rename to include/Utils/impl/codecvt_specialisations.hpp diff --git a/include/Utils/impl/iso88591_utf8.h b/include/Utils/impl/iso88591_utf8.hpp similarity index 100% rename from include/Utils/impl/iso88591_utf8.h rename to include/Utils/impl/iso88591_utf8.hpp diff --git a/include/Utils/impl/ucs2_utf16.h b/include/Utils/impl/ucs2_utf16.hpp similarity index 100% rename from include/Utils/impl/ucs2_utf16.h rename to include/Utils/impl/ucs2_utf16.hpp diff --git a/include/Utils/impl/ucs2_utf8.h b/include/Utils/impl/ucs2_utf8.hpp similarity index 100% rename from include/Utils/impl/ucs2_utf8.h rename to include/Utils/impl/ucs2_utf8.hpp diff --git a/include/Utils/iso88591utf8codecvt.h b/include/Utils/iso88591utf8codecvt.hpp similarity index 97% rename from include/Utils/iso88591utf8codecvt.h rename to include/Utils/iso88591utf8codecvt.hpp index 989a17e2..83260872 100644 --- a/include/Utils/iso88591utf8codecvt.h +++ b/include/Utils/iso88591utf8codecvt.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_ISO88591UTF8ISO88591_CODECVT_H #define ARABICA_ISO88591UTF8ISO88591_CODECVT_H #include -#include +#include #ifdef ARABICA_VS6_WORKAROUND namespace std { diff --git a/include/Utils/normalize_whitespace.hpp b/include/Utils/normalize_whitespace.hpp index d4e4f88e..842a79fe 100644 --- a/include/Utils/normalize_whitespace.hpp +++ b/include/Utils/normalize_whitespace.hpp @@ -1,9 +1,9 @@ #ifndef ARABICA_UTILS_NORMALIZE_WHITESPACE_HPP #define ARABICA_UTILS_NORMALIZE_WHITESPACE_HPP -#include -#include -#include +#include +#include +#include namespace Arabica { diff --git a/include/Utils/rot13codecvt.h b/include/Utils/rot13codecvt.hpp similarity index 96% rename from include/Utils/rot13codecvt.h rename to include/Utils/rot13codecvt.hpp index bb6b5ad5..3f6fc0a6 100644 --- a/include/Utils/rot13codecvt.h +++ b/include/Utils/rot13codecvt.hpp @@ -7,9 +7,9 @@ /////////////////////////////////////////// #include -#include +#include #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/socket_stream.h b/include/Utils/socket_stream.hpp similarity index 99% rename from include/Utils/socket_stream.h rename to include/Utils/socket_stream.hpp index a0d1a242..eeb91ba0 100644 --- a/include/Utils/socket_stream.h +++ b/include/Utils/socket_stream.hpp @@ -11,7 +11,7 @@ // $Id$ /////////////////////////////////////////////////////////////////////// -#include +#include #ifndef ARABICA_USE_WINSOCK #include #include @@ -33,7 +33,7 @@ #endif #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/ucs2utf8codecvt.hpp b/include/Utils/ucs2utf8codecvt.hpp index 25d69bed..d4bec73c 100644 --- a/include/Utils/ucs2utf8codecvt.hpp +++ b/include/Utils/ucs2utf8codecvt.hpp @@ -12,16 +12,16 @@ // // $Id$ //--------------------------------------------------------------------------- -#include +#include #include #ifndef ARABICA_NO_CODECVT_SPECIALISATIONS -#include +#include #endif #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/utf16beucs2codecvt.h b/include/Utils/utf16beucs2codecvt.hpp similarity index 93% rename from include/Utils/utf16beucs2codecvt.h rename to include/Utils/utf16beucs2codecvt.hpp index e8e82b9b..b145c3d5 100644 --- a/include/Utils/utf16beucs2codecvt.h +++ b/include/Utils/utf16beucs2codecvt.hpp @@ -7,17 +7,17 @@ // // $Id$ //--------------------------------------------------------------------------- -#include +#include #ifndef ARABICA_NO_WCHAR_T #include #ifndef ARABICA_NO_CODECVT_SPECIALISATIONS -#include +#include #endif #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/utf16leucs2codecvt.h b/include/Utils/utf16leucs2codecvt.hpp similarity index 93% rename from include/Utils/utf16leucs2codecvt.h rename to include/Utils/utf16leucs2codecvt.hpp index 3d11b38e..bb19a65f 100644 --- a/include/Utils/utf16leucs2codecvt.h +++ b/include/Utils/utf16leucs2codecvt.hpp @@ -7,17 +7,17 @@ // // $Id$ //--------------------------------------------------------------------------- -#include +#include #ifndef ARABICA_NO_WCHAR_T #include #ifndef ARABICA_NO_CODECVT_SPECIALISATIONS -#include +#include #endif #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/utf16utf8codecvt.h b/include/Utils/utf16utf8codecvt.hpp similarity index 94% rename from include/Utils/utf16utf8codecvt.h rename to include/Utils/utf16utf8codecvt.hpp index 6ca7d3df..f90543ae 100644 --- a/include/Utils/utf16utf8codecvt.h +++ b/include/Utils/utf16utf8codecvt.hpp @@ -12,16 +12,16 @@ // // $Id$ //--------------------------------------------------------------------------- -#include +#include #include #ifndef ARABICA_NO_CODECVT_SPECIALISATIONS -#include +#include #endif #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/Utils/utf8iso88591codecvt.h b/include/Utils/utf8iso88591codecvt.hpp similarity index 97% rename from include/Utils/utf8iso88591codecvt.h rename to include/Utils/utf8iso88591codecvt.hpp index 892c3cd0..2898453b 100644 --- a/include/Utils/utf8iso88591codecvt.h +++ b/include/Utils/utf8iso88591codecvt.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_UTF8ISO88591_CODECVT_H #define ARABICA_UTF8ISO88591_CODECVT_H #include -#include +#include #ifdef ARABICA_VS6_WORKAROUND namespace std { diff --git a/include/Utils/utf8ucs2codecvt.h b/include/Utils/utf8ucs2codecvt.hpp similarity index 94% rename from include/Utils/utf8ucs2codecvt.h rename to include/Utils/utf8ucs2codecvt.hpp index 2c407a33..83aa947d 100644 --- a/include/Utils/utf8ucs2codecvt.h +++ b/include/Utils/utf8ucs2codecvt.hpp @@ -12,17 +12,17 @@ // // $Id$ //--------------------------------------------------------------------------- -#include +#include #ifndef ARABICA_NO_WCHAR_T #include #ifndef ARABICA_NO_CODECVT_SPECIALISATIONS -#include +#include #endif #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif namespace Arabica diff --git a/include/XML/UnicodeCharacters.h b/include/XML/UnicodeCharacters.hpp similarity index 100% rename from include/XML/UnicodeCharacters.h rename to include/XML/UnicodeCharacters.hpp diff --git a/include/XML/XMLCharacterClasses.h b/include/XML/XMLCharacterClasses.hpp similarity index 100% rename from include/XML/XMLCharacterClasses.h rename to include/XML/XMLCharacterClasses.hpp diff --git a/include/XML/escaper.hpp b/include/XML/escaper.hpp index 03375e16..99fa7811 100644 --- a/include/XML/escaper.hpp +++ b/include/XML/escaper.hpp @@ -2,7 +2,7 @@ #define ARABICA_UTILS_ESCAPER_HPP #include -#include +#include namespace Arabica { namespace XML { diff --git a/include/XPath/impl/xpath_axis_enumerator.hpp b/include/XPath/impl/xpath_axis_enumerator.hpp index 4dbf5050..61e6d905 100644 --- a/include/XPath/impl/xpath_axis_enumerator.hpp +++ b/include/XPath/impl/xpath_axis_enumerator.hpp @@ -1,9 +1,9 @@ #ifndef ARABICA_XPATHIC_XPATH_AXIS_ENUMERATOR_H #define ARABICA_XPATHIC_XPATH_AXIS_ENUMERATOR_H -#include -#include -#include +#include +#include +#include #include "xpath_namespace_node.hpp" namespace Arabica diff --git a/include/XPath/impl/xpath_execution_context.hpp b/include/XPath/impl/xpath_execution_context.hpp index 28372413..0f9f4e14 100644 --- a/include/XPath/impl/xpath_execution_context.hpp +++ b/include/XPath/impl/xpath_execution_context.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_XPATH_EXECUTION_CONTEXT_HPP #define ARABICA_XPATH_EXECUTION_CONTEXT_HPP -#include +#include #include "xpath_variable_resolver.hpp" #include "xpath_resolver_holder.hpp" diff --git a/include/XPath/impl/xpath_expression.hpp b/include/XPath/impl/xpath_expression.hpp index d720a141..120e4805 100644 --- a/include/XPath/impl/xpath_expression.hpp +++ b/include/XPath/impl/xpath_expression.hpp @@ -2,7 +2,7 @@ #define ARABICA_XPATHIC_XPATH_EXPRESSION_H #include -#include +#include #include "xpath_object.hpp" #include "xpath_execution_context.hpp" diff --git a/include/XPath/impl/xpath_function.hpp b/include/XPath/impl/xpath_function.hpp index b9791d42..5bf11c06 100644 --- a/include/XPath/impl/xpath_function.hpp +++ b/include/XPath/impl/xpath_function.hpp @@ -3,8 +3,8 @@ #include #include -#include -#include +#include +#include #include #include "xpath_value.hpp" #include "xpath_execution_context.hpp" diff --git a/include/XPath/impl/xpath_namespace_node.hpp b/include/XPath/impl/xpath_namespace_node.hpp index fd257ae8..d38f2582 100644 --- a/include/XPath/impl/xpath_namespace_node.hpp +++ b/include/XPath/impl/xpath_namespace_node.hpp @@ -5,9 +5,9 @@ #pragma warning(disable: 4250) #endif -#include -#include -#include +#include +#include +#include namespace Arabica { diff --git a/include/XPath/impl/xpath_node_test.hpp b/include/XPath/impl/xpath_node_test.hpp index 53eb4f0e..de5d21c6 100644 --- a/include/XPath/impl/xpath_node_test.hpp +++ b/include/XPath/impl/xpath_node_test.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_XPATHIC_XPATH_NODE_TEST_HPP #define ARABICA_XPATHIC_XPATH_NODE_TEST_HPP -#include +#include #include "xpath_namespace_node.hpp" #include diff --git a/include/XPath/impl/xpath_object.hpp b/include/XPath/impl/xpath_object.hpp index d4028334..d34856ad 100644 --- a/include/XPath/impl/xpath_object.hpp +++ b/include/XPath/impl/xpath_object.hpp @@ -4,15 +4,15 @@ #include #include #include -#include -#include +#include +#include #include #include #ifdef __BORLANDC__ #include #endif #include -#include +#include #include #include "xpath_axis_enumerator.hpp" diff --git a/include/XPath/impl/xpath_step.hpp b/include/XPath/impl/xpath_step.hpp index 065f5952..612e8c00 100644 --- a/include/XPath/impl/xpath_step.hpp +++ b/include/XPath/impl/xpath_step.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_XPATHIC_XPATH_STEP_H #define ARABICA_XPATHIC_XPATH_STEP_H -#include +#include #include #include "xpath_object.hpp" #include "xpath_value.hpp" diff --git a/include/XPath/impl/xpath_value.hpp b/include/XPath/impl/xpath_value.hpp index fda2839f..da617475 100644 --- a/include/XPath/impl/xpath_value.hpp +++ b/include/XPath/impl/xpath_value.hpp @@ -2,10 +2,10 @@ #define ARABICA_XPATHIC_XPATH_VALUE_H #include -#include +#include #include #include -#include +#include #include "xpath_object.hpp" #include "xpath_expression.hpp" diff --git a/include/XSLT/impl/handler/xslt_create_handler.hpp b/include/XSLT/impl/handler/xslt_create_handler.hpp index 75ab20b0..6bde65e2 100755 --- a/include/XSLT/impl/handler/xslt_create_handler.hpp +++ b/include/XSLT/impl/handler/xslt_create_handler.hpp @@ -1,8 +1,8 @@ #ifndef ARABICA_XSLT_CREATE_HANDLER_HPP #define ARABICA_XSLT_CREATE_HANDLER_HPP -#include -#include +#include +#include #include #include "../xslt_compilation_context.hpp" diff --git a/include/XSLT/impl/handler/xslt_namespace_alias_handler.hpp b/include/XSLT/impl/handler/xslt_namespace_alias_handler.hpp index 1c6466fd..5918dfc8 100644 --- a/include/XSLT/impl/handler/xslt_namespace_alias_handler.hpp +++ b/include/XSLT/impl/handler/xslt_namespace_alias_handler.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_XSLT_NAMESPACE_ALIAS_HANDLER_HPP #define ARABICA_XSLT_NAMESPACE_ALIAS_HANDLER_HPP -#include +#include namespace Arabica { diff --git a/include/XSLT/impl/handler/xslt_value_of_handler.hpp b/include/XSLT/impl/handler/xslt_value_of_handler.hpp index 0c916892..2cb18154 100755 --- a/include/XSLT/impl/handler/xslt_value_of_handler.hpp +++ b/include/XSLT/impl/handler/xslt_value_of_handler.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_XSLT_VALUE_OF_HANDLER_HPP #define ARABICA_XSLT_VALUE_OF_HANDLER_HPP -#include +#include #include "../xslt_value_of.hpp" namespace Arabica diff --git a/include/XSLT/impl/xslt_compilation_context.hpp b/include/XSLT/impl/xslt_compilation_context.hpp index 4058d6ff..c73f2bd8 100755 --- a/include/XSLT/impl/xslt_compilation_context.hpp +++ b/include/XSLT/impl/xslt_compilation_context.hpp @@ -1,8 +1,8 @@ #ifndef ARABICA_XSLT_COMPILATION_CONTEXT #define ARABICA_XSLT_COMPILATION_CONTEXT -#include -#include +#include +#include #include #include diff --git a/include/XSLT/impl/xslt_functions.hpp b/include/XSLT/impl/xslt_functions.hpp index b769b1fd..130e2059 100644 --- a/include/XSLT/impl/xslt_functions.hpp +++ b/include/XSLT/impl/xslt_functions.hpp @@ -1,8 +1,8 @@ #ifndef ARABICA_XSLT_FUNCTIONS_HPP #define ARABICA_XSLT_FUNCTIONS_HPP -#include -#include +#include +#include namespace Arabica { diff --git a/include/XSLT/impl/xslt_inline_element.hpp b/include/XSLT/impl/xslt_inline_element.hpp index c2e2c778..70d2b555 100644 --- a/include/XSLT/impl/xslt_inline_element.hpp +++ b/include/XSLT/impl/xslt_inline_element.hpp @@ -2,7 +2,7 @@ #define ARABICA_XSLT_INLINE_ELEMENT_HPP #include "xslt_item.hpp" -#include +#include namespace Arabica { diff --git a/include/XSLT/impl/xslt_sink.hpp b/include/XSLT/impl/xslt_sink.hpp index 109bfb59..c1e2a9e0 100755 --- a/include/XSLT/impl/xslt_sink.hpp +++ b/include/XSLT/impl/xslt_sink.hpp @@ -4,9 +4,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include "xslt_namespace_stack.hpp" #include "xslt_qname.hpp" diff --git a/include/XSLT/impl/xslt_stylesheet_compiler.hpp b/include/XSLT/impl/xslt_stylesheet_compiler.hpp index a2fcca90..b4a96e33 100755 --- a/include/XSLT/impl/xslt_stylesheet_compiler.hpp +++ b/include/XSLT/impl/xslt_stylesheet_compiler.hpp @@ -1,7 +1,7 @@ #ifndef ARABICA_XSLT_STYLESHEETCONSTANT_HPP #define ARABICA_XSLT_STYLESHEETCONSTANT_HPP -#include +#include #include #include diff --git a/src/SAX/helpers/InputSourceResolver.cpp b/src/SAX/helpers/InputSourceResolver.cpp index 3a6940ac..03e01c57 100644 --- a/src/SAX/helpers/InputSourceResolver.cpp +++ b/src/SAX/helpers/InputSourceResolver.cpp @@ -6,10 +6,10 @@ #pragma warning(disable: 4786) #endif -#include +#include #include #include -#include +#include #include #include diff --git a/src/SAX/wrappers/saxexpat.cpp b/src/SAX/wrappers/saxexpat.cpp index 2b114ba2..f4cbafae 100644 --- a/src/SAX/wrappers/saxexpat.cpp +++ b/src/SAX/wrappers/saxexpat.cpp @@ -6,7 +6,7 @@ #pragma warning(disable: 4786) #endif -#include +#include namespace SAX { diff --git a/src/SAX/wrappers/saxlibxml2.cpp b/src/SAX/wrappers/saxlibxml2.cpp index 97492b5c..da451b1d 100644 --- a/src/SAX/wrappers/saxlibxml2.cpp +++ b/src/SAX/wrappers/saxlibxml2.cpp @@ -6,9 +6,9 @@ #pragma warning(disable: 4786 4800) #endif -#include +#include -#include +#include namespace SAX { diff --git a/src/SAX/wrappers/saxxerces.cpp b/src/SAX/wrappers/saxxerces.cpp index bde2b960..6c5a4b66 100644 --- a/src/SAX/wrappers/saxxerces.cpp +++ b/src/SAX/wrappers/saxxerces.cpp @@ -5,8 +5,8 @@ #pragma warning(disable: 4786 4800) #endif -#include -#include +#include +#include namespace SAX { diff --git a/src/Utils/base64codecvt.cpp b/src/Utils/base64codecvt.cpp index 2838af92..fd7ed880 100644 --- a/src/Utils/base64codecvt.cpp +++ b/src/Utils/base64codecvt.cpp @@ -4,7 +4,7 @@ // /////////////////////////////////////////// -#include +#include static const std::string base64_charset("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"); static const int NO_MORE = 256; diff --git a/src/Utils/impl/codecvt_specialisations.cpp b/src/Utils/impl/codecvt_specialisations.cpp index 9e637814..995acd52 100644 --- a/src/Utils/impl/codecvt_specialisations.cpp +++ b/src/Utils/impl/codecvt_specialisations.cpp @@ -1,4 +1,4 @@ -#include +#include std::locale::id std::codecvt::id; diff --git a/src/Utils/impl/iso88591_utf8.cpp b/src/Utils/impl/iso88591_utf8.cpp index b4097858..006343ce 100644 --- a/src/Utils/impl/iso88591_utf8.cpp +++ b/src/Utils/impl/iso88591_utf8.cpp @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include +#include //--------------------------------------------------------------------------- // Some of this code is derived from work done by Ken Thompson, // provided to the X/Open Group. diff --git a/src/Utils/impl/ucs2_utf16.cpp b/src/Utils/impl/ucs2_utf16.cpp index 0e995e0b..08c57770 100644 --- a/src/Utils/impl/ucs2_utf16.cpp +++ b/src/Utils/impl/ucs2_utf16.cpp @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- -#include +#include // -------------------------------------------------------------------------- std::codecvt_base::result Arabica::Internal::utf16_2_ucs2(bool be, char const* from, char const* from_end, char const*& from_next, diff --git a/src/Utils/impl/ucs2_utf8.cpp b/src/Utils/impl/ucs2_utf8.cpp index ec0088bd..8f7bef9e 100644 --- a/src/Utils/impl/ucs2_utf8.cpp +++ b/src/Utils/impl/ucs2_utf8.cpp @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include +#include //--------------------------------------------------------------------------- // Some of this code is derived from work done by Ken Thompson, // provided to the X/Open Group. diff --git a/src/Utils/iso88591utf8codecvt.cpp b/src/Utils/iso88591utf8codecvt.cpp index 726b2df8..c3737ab2 100644 --- a/src/Utils/iso88591utf8codecvt.cpp +++ b/src/Utils/iso88591utf8codecvt.cpp @@ -1,8 +1,8 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include -#include +#include +#include //--------------------------------------------------------------------------- // This facet converts from ISO8859:1 (Latin 1) chars to UTF-8 encoded chars. using namespace Arabica::convert; diff --git a/src/Utils/rot13codecvt.cpp b/src/Utils/rot13codecvt.cpp index 0a662ed8..3a7403cf 100644 --- a/src/Utils/rot13codecvt.cpp +++ b/src/Utils/rot13codecvt.cpp @@ -4,9 +4,9 @@ // /////////////////////////////////////////// -#include +#include #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif using namespace Arabica::convert; diff --git a/src/Utils/ucs2utf8codecvt.cpp b/src/Utils/ucs2utf8codecvt.cpp index 92ccfc01..53eded0d 100644 --- a/src/Utils/ucs2utf8codecvt.cpp +++ b/src/Utils/ucs2utf8codecvt.cpp @@ -2,7 +2,7 @@ // $Id$ //--------------------------------------------------------------------------- #include -#include +#include //--------------------------------------------------------------------------- // This facet converts from wide chars to char using the // FSS-UTF (UCS2) encoding. diff --git a/src/Utils/uri.cpp b/src/Utils/uri.cpp index 3dcdf339..495a889f 100644 --- a/src/Utils/uri.cpp +++ b/src/Utils/uri.cpp @@ -141,4 +141,5 @@ void URI::combinePath(const std::string& relPath) path_.erase(dot, 2); dot = path_.find("/./", dot); } -} // combinePath \ No newline at end of file +} // combinePath + diff --git a/src/Utils/utf16beucs2codecvt.cpp b/src/Utils/utf16beucs2codecvt.cpp index e6e0f8ad..4953eedb 100644 --- a/src/Utils/utf16beucs2codecvt.cpp +++ b/src/Utils/utf16beucs2codecvt.cpp @@ -1,12 +1,12 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include +#include #ifndef ARABICA_NO_WCHAR_T -#include +#include #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif //--------------------------------------------------------------------------- using namespace Arabica::convert; diff --git a/src/Utils/utf16leucs2codecvt.cpp b/src/Utils/utf16leucs2codecvt.cpp index d4ec68cf..8a5cf2c5 100644 --- a/src/Utils/utf16leucs2codecvt.cpp +++ b/src/Utils/utf16leucs2codecvt.cpp @@ -1,12 +1,12 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include +#include #ifndef ARABICA_NO_WCHAR_T -#include +#include #ifdef ARABICA_VS6_WORKAROUND -#include +#include #endif using namespace Arabica::convert; diff --git a/src/Utils/utf16utf8codecvt.cpp b/src/Utils/utf16utf8codecvt.cpp index f7d5898c..fbe80f8f 100644 --- a/src/Utils/utf16utf8codecvt.cpp +++ b/src/Utils/utf16utf8codecvt.cpp @@ -1,8 +1,8 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include -#include +#include +#include //--------------------------------------------------------------------------- // This facet converts from wide chars to char using the // FSS-UTF (UCS2) encoding. diff --git a/src/Utils/utf8iso88591codecvt.cpp b/src/Utils/utf8iso88591codecvt.cpp index 9e5dfaac..1b6d656d 100644 --- a/src/Utils/utf8iso88591codecvt.cpp +++ b/src/Utils/utf8iso88591codecvt.cpp @@ -1,8 +1,8 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include -#include +#include +#include //--------------------------------------------------------------------------- // This facet converts from ISO8859:1 (Latin 1) chars to UTF-8 encoded chars. diff --git a/src/Utils/utf8ucs2codecvt.cpp b/src/Utils/utf8ucs2codecvt.cpp index a88239f8..3b5bc3f4 100644 --- a/src/Utils/utf8ucs2codecvt.cpp +++ b/src/Utils/utf8ucs2codecvt.cpp @@ -1,9 +1,9 @@ //--------------------------------------------------------------------------- // $Id$ //--------------------------------------------------------------------------- -#include -#include -#include +#include +#include +#include //--------------------------------------------------------------------------- #ifndef ARABICA_NO_WCHAR_T diff --git a/src/XML/XMLCharacterClasses.cpp b/src/XML/XMLCharacterClasses.cpp index 13880c07..dd5cfc4a 100644 --- a/src/XML/XMLCharacterClasses.cpp +++ b/src/XML/XMLCharacterClasses.cpp @@ -1,7 +1,7 @@ -#include -#include -#include +#include +#include +#include const wchar_t base_char_ranges[][2] = { diff --git a/src/arabica.cpp b/src/arabica.cpp index a58ee335..0594ebe1 100644 --- a/src/arabica.cpp +++ b/src/arabica.cpp @@ -4,7 +4,7 @@ #pragma warning(disable: 4786) #endif -#include +#include #ifdef USE_EXPAT #include "SAX/wrappers/saxexpat.cpp" diff --git a/tests/DOM/dom_test_suite.hpp b/tests/DOM/dom_test_suite.hpp index eddceb14..6da9a49c 100644 --- a/tests/DOM/dom_test_suite.hpp +++ b/tests/DOM/dom_test_suite.hpp @@ -5,14 +5,14 @@ #include "../CppUnit/framework/Test.h" #include "../CppUnit/framework/TestSuite.h" -#include "test_DOMImplementation.h" -#include "test_DocumentType.h" -#include "test_Document.h" -#include "test_ProcessingInstruction.h" -#include "test_Siblings.h" -#include "test_Element.h" -#include "test_DocumentFragment.h" -#include "test_Attribute.h" +#include "test_DOMImplementation.hpp" +#include "test_DocumentType.hpp" +#include "test_Document.hpp" +#include "test_ProcessingInstruction.hpp" +#include "test_Siblings.hpp" +#include "test_Element.hpp" +#include "test_DocumentFragment.hpp" +#include "test_Attribute.hpp" #include "test_Text.hpp" #include "test_CDATA.hpp" #include "test_CharacterData.hpp" diff --git a/tests/DOM/test_Attribute.h b/tests/DOM/test_Attribute.hpp similarity index 99% rename from tests/DOM/test_Attribute.h rename to tests/DOM/test_Attribute.hpp index 27b5686e..7737b4ab 100644 --- a/tests/DOM/test_Attribute.h +++ b/tests/DOM/test_Attribute.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class AttrTest : public TestCase diff --git a/tests/DOM/test_CDATA.hpp b/tests/DOM/test_CDATA.hpp index e26a29fd..0da50e14 100644 --- a/tests/DOM/test_CDATA.hpp +++ b/tests/DOM/test_CDATA.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class CDATATest : public TestCase diff --git a/tests/DOM/test_CharacterData.hpp b/tests/DOM/test_CharacterData.hpp index 55607a98..4967adf3 100644 --- a/tests/DOM/test_CharacterData.hpp +++ b/tests/DOM/test_CharacterData.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class CharacterDataTest : public TestCase diff --git a/tests/DOM/test_DOMImplementation.h b/tests/DOM/test_DOMImplementation.hpp similarity index 98% rename from tests/DOM/test_DOMImplementation.h rename to tests/DOM/test_DOMImplementation.hpp index d2fa3658..28a86ef3 100644 --- a/tests/DOM/test_DOMImplementation.h +++ b/tests/DOM/test_DOMImplementation.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class DOMImplementationTest : public TestCase diff --git a/tests/DOM/test_Document.h b/tests/DOM/test_Document.hpp similarity index 99% rename from tests/DOM/test_Document.h rename to tests/DOM/test_Document.hpp index 714aed13..6cf2c3e4 100644 --- a/tests/DOM/test_Document.h +++ b/tests/DOM/test_Document.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class DocumentTest : public TestCase diff --git a/tests/DOM/test_DocumentFragment.h b/tests/DOM/test_DocumentFragment.hpp similarity index 99% rename from tests/DOM/test_DocumentFragment.h rename to tests/DOM/test_DocumentFragment.hpp index 03a15945..ea3bb692 100644 --- a/tests/DOM/test_DocumentFragment.h +++ b/tests/DOM/test_DocumentFragment.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class DocumentFragmentTest : public TestCase diff --git a/tests/DOM/test_DocumentType.h b/tests/DOM/test_DocumentType.hpp similarity index 98% rename from tests/DOM/test_DocumentType.h rename to tests/DOM/test_DocumentType.hpp index dc91698d..37959080 100644 --- a/tests/DOM/test_DocumentType.h +++ b/tests/DOM/test_DocumentType.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class DocumentTypeTest : public TestCase diff --git a/tests/DOM/test_Element.h b/tests/DOM/test_Element.hpp similarity index 99% rename from tests/DOM/test_Element.h rename to tests/DOM/test_Element.hpp index 6b0259d3..ee2941df 100644 --- a/tests/DOM/test_Element.h +++ b/tests/DOM/test_Element.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class ElementTest : public TestCase diff --git a/tests/DOM/test_ProcessingInstruction.h b/tests/DOM/test_ProcessingInstruction.hpp similarity index 98% rename from tests/DOM/test_ProcessingInstruction.h rename to tests/DOM/test_ProcessingInstruction.hpp index 19f36c87..46fc3a02 100644 --- a/tests/DOM/test_ProcessingInstruction.h +++ b/tests/DOM/test_ProcessingInstruction.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class PITest : public TestCase diff --git a/tests/DOM/test_SAX2DOM.hpp b/tests/DOM/test_SAX2DOM.hpp index ab68b04d..78c9b37e 100644 --- a/tests/DOM/test_SAX2DOM.hpp +++ b/tests/DOM/test_SAX2DOM.hpp @@ -5,8 +5,8 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" #include -#include -#include +#include +#include template class SAX2DOMTest : public TestCase diff --git a/tests/DOM/test_Siblings.h b/tests/DOM/test_Siblings.hpp similarity index 99% rename from tests/DOM/test_Siblings.h rename to tests/DOM/test_Siblings.hpp index 3e6f9a51..bc86c0ce 100644 --- a/tests/DOM/test_Siblings.h +++ b/tests/DOM/test_Siblings.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class SiblingsTest : public TestCase diff --git a/tests/DOM/test_Text.hpp b/tests/DOM/test_Text.hpp index 587962e5..cf6de47f 100644 --- a/tests/DOM/test_Text.hpp +++ b/tests/DOM/test_Text.hpp @@ -5,7 +5,7 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" -#include +#include template class TextTest : public TestCase diff --git a/tests/DOM/test_TreeWalker.hpp b/tests/DOM/test_TreeWalker.hpp index b6ff31a0..8dcf4e8a 100644 --- a/tests/DOM/test_TreeWalker.hpp +++ b/tests/DOM/test_TreeWalker.hpp @@ -5,8 +5,8 @@ #include "../CppUnit/framework/TestSuite.h" #include "../CppUnit/framework/TestCaller.h" #include -#include -#include +#include +#include template class TreeWalkerTest : public TestCase diff --git a/tests/SAX/filter_test.cpp b/tests/SAX/filter_test.cpp index 859fce55..4d458f78 100644 --- a/tests/SAX/filter_test.cpp +++ b/tests/SAX/filter_test.cpp @@ -5,7 +5,7 @@ #include "../CppUnit/TestRunner.hpp" #include "../CppUnit/framework/Test.h" #include "../CppUnit/framework/TestSuite.h" -#include +#include #include "test_WhitespaceStripper.hpp" //////////////////////////////////////////////// diff --git a/tests/SAX/filter_test_wide.cpp b/tests/SAX/filter_test_wide.cpp index b5c89745..f6971430 100644 --- a/tests/SAX/filter_test_wide.cpp +++ b/tests/SAX/filter_test_wide.cpp @@ -5,7 +5,7 @@ #include "../CppUnit/TestRunner.hpp" #include "../CppUnit/framework/Test.h" #include "../CppUnit/framework/TestSuite.h" -#include +#include #include "test_WhitespaceStripper.hpp" //////////////////////////////////////////////// diff --git a/tests/SAX/test_WhitespaceStripper.hpp b/tests/SAX/test_WhitespaceStripper.hpp index 198f252b..2688603c 100644 --- a/tests/SAX/test_WhitespaceStripper.hpp +++ b/tests/SAX/test_WhitespaceStripper.hpp @@ -5,8 +5,8 @@ #include #include -#include -#include +#include +#include #include #include diff --git a/tests/Utils/test_base64.hpp b/tests/Utils/test_base64.hpp index 68b12cc8..856b7427 100644 --- a/tests/Utils/test_base64.hpp +++ b/tests/Utils/test_base64.hpp @@ -1,7 +1,7 @@ #ifndef UTILS_BASE64_TEST_HPP #define UTILS_BASE64_TEST_HPP -#include +#include #ifdef _MSC_VER #pragma warning(disable: 4244) diff --git a/tests/XPath/axis_enumerator_test.hpp b/tests/XPath/axis_enumerator_test.hpp index fbc8654f..f11df7c5 100644 --- a/tests/XPath/axis_enumerator_test.hpp +++ b/tests/XPath/axis_enumerator_test.hpp @@ -6,7 +6,7 @@ #include "../CppUnit/framework/TestCaller.h" #include -#include +#include template class AxisEnumeratorTest : public TestCase diff --git a/tests/XPath/execute_test.hpp b/tests/XPath/execute_test.hpp index 01b8d1c4..b60238b3 100644 --- a/tests/XPath/execute_test.hpp +++ b/tests/XPath/execute_test.hpp @@ -6,7 +6,7 @@ #include "../CppUnit/framework/TestCaller.h" #include -#include +#include template class StringVariableResolver : public Arabica::XPath::VariableResolver diff --git a/tests/XPath/expression_test.hpp b/tests/XPath/expression_test.hpp index 278909f1..d4fea9a9 100644 --- a/tests/XPath/expression_test.hpp +++ b/tests/XPath/expression_test.hpp @@ -6,7 +6,7 @@ #include "../CppUnit/framework/TestCaller.h" #include -#include +#include template diff --git a/tests/XPath/match_test.hpp b/tests/XPath/match_test.hpp index efe6a5c7..c9572485 100644 --- a/tests/XPath/match_test.hpp +++ b/tests/XPath/match_test.hpp @@ -6,8 +6,8 @@ #include "../CppUnit/framework/TestCaller.h" #include -#include -#include +#include +#include template diff --git a/tests/XPath/node_test_test.hpp b/tests/XPath/node_test_test.hpp index 61bbbae7..a8d1c3af 100644 --- a/tests/XPath/node_test_test.hpp +++ b/tests/XPath/node_test_test.hpp @@ -6,7 +6,7 @@ #include "../CppUnit/framework/TestCaller.h" #include -#include +#include template class NodeTestTest : public TestCase diff --git a/tests/XPath/step_test.hpp b/tests/XPath/step_test.hpp index 61f178ac..476b75e6 100644 --- a/tests/XPath/step_test.hpp +++ b/tests/XPath/step_test.hpp @@ -6,7 +6,7 @@ #include "../CppUnit/framework/TestCaller.h" #include -#include +#include template class StepTest : public TestCase diff --git a/tests/XSLT/main.cpp b/tests/XSLT/main.cpp index b29f1033..9d77b971 100755 --- a/tests/XSLT/main.cpp +++ b/tests/XSLT/main.cpp @@ -5,8 +5,8 @@ #include #include -#include -#include +#include +#include #include /////////////////////////////////////////////// diff --git a/tests/XSLT/xslt_test.hpp b/tests/XSLT/xslt_test.hpp index 4ad0c066..dfa90b07 100644 --- a/tests/XSLT/xslt_test.hpp +++ b/tests/XSLT/xslt_test.hpp @@ -1,9 +1,9 @@ #ifndef XSLT_XSLT_TEST_HPP #define XSLT_XSLT_TEST_HPP -#include -#include -#include +#include +#include +#include #include #include diff --git a/tests/silly_string/silly_string.cpp b/tests/silly_string/silly_string.cpp index 928b997c..fcfc5eee 100644 --- a/tests/silly_string/silly_string.cpp +++ b/tests/silly_string/silly_string.cpp @@ -1,7 +1,7 @@ #include "silly_string.hpp" -#include -#include +#include +#include #include silly_string::silly_string() diff --git a/tests/silly_string/silly_string.hpp b/tests/silly_string/silly_string.hpp index d8c8b95a..034e41f7 100644 --- a/tests/silly_string/silly_string.hpp +++ b/tests/silly_string/silly_string.hpp @@ -4,7 +4,7 @@ #include #include #include -#include +#include // testing purposes only // a string with as minimal interface as possible