mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
89 lines
3.7 KiB
C++
89 lines
3.7 KiB
C++
def ARABICA_SAX_FWD_H
|
|
#define ARABICA_SAX_FWD_H
|
|
|
|
#include <string>
|
|
|
|
/** \mainpage Arabica XML Parser Toolkit
|
|
*
|
|
* \section intro Introduction
|
|
*
|
|
* <p>Arabica has a full <a href='http://www.saxproject.org/'>SAX2, the Simple API for XML</a>, implementation
|
|
* including the optional interfaces and helper classes. Layered on
|
|
* SAX is a W3C <a href='http://www.w3.org/DOM/'>Document Object Model (DOM) Level 2.0 Core</a>
|
|
* implementation, together with an <a href='http://www.w3.org/tr/xpath'>XPath</a> engine. </p>
|
|
*
|
|
* <p>It delivers UTF-8 encoded std::strings or UCS-2 std::wstrings,
|
|
* but can also accommodate custom string types and alternative
|
|
* encodings. </p>
|
|
*
|
|
* <p>It provides uniform SAX2 wrappers for the <a href='http://www.libexpat.org/'>expat</a> parser,
|
|
* <a href='http://xml.apache.org/xerces-c/index.html'>Xerces</a>, <a href='http://www.xmlsoft.org'>libxml</a>
|
|
* and for the <a href='http://msdn.microsoft.com/xml'>Microsoft XML parser</a> COM component.</p>
|
|
*
|
|
* \section license License
|
|
*
|
|
* Copyright (c) 2001-2012 Jez UK Ltd<br>
|
|
* All rights reserved.
|
|
* <p>
|
|
* Redistribution and use in source and binary forms, with or <br>
|
|
* without modification, are permitted provided that the following <br>
|
|
* conditions are met:<br>
|
|
* <ul>
|
|
* <li>Redistributions of source code must retain the above <br>
|
|
* copyright notice, this list of conditions and the following <br>
|
|
* disclaimer.</li>
|
|
* <li>Redistributions in binary form must reproduce the above <br>
|
|
* copyright notice, this list of conditions and the following <br>
|
|
* disclaimer in the documentation and/or other materials <br>
|
|
* provided with the distribution.</li>
|
|
* <li>Neither the name of Jez UK Ltd nor the names of <br>
|
|
* contributors may be used to endorse or promote products <br>
|
|
* derived from this software without specific prior written <br>
|
|
* permission.</li>
|
|
* </ul>
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND <br>
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, <br>
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF <br>
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE <br>
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE <br>
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, <br>
|
|
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, <br>
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, <br>
|
|
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY <br>
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR <br>
|
|
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT <br>
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY <br>
|
|
* OF SUCH DAMAGE.<br>
|
|
*
|
|
*/
|
|
|
|
|
|
#include <SAX/ParserConfig.h>
|
|
#include <SAX/ArabicaConfig.h>
|
|
|
|
/**
|
|
*
|
|
* SAX in C++ - A C++ implementation of the SAX2 interface.
|
|
*
|
|
*/
|
|
namespace Arabica
|
|
{
|
|
namespace SAX
|
|
{
|
|
|
|
template<class string_type, class string_adaptor> class AttributeList;
|
|
template<class string_type, class string_adaptor> class DocumentHandler;
|
|
template<class string_type, class string_adaptor> class DTDHandler;
|
|
template<class string_type, class string_adaptor> class EntityResolver;
|
|
template<class string_type, class string_adaptor> class InputSource;
|
|
template<class string_type, class string_adaptor> class Locator;
|
|
template<class string_type, class string_adaptor> class Parser;
|
|
template<class string_type, class string_adaptor> class SAXParseException;
|
|
template<class string_type, class string_adaptor> class ErrorHandler;
|
|
|
|
} // namespace SAX
|
|
} // namespace Arabica
|
|
|
|
#endif
|
|
// end of file
|
|
|