mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-15 19:48:00 +01:00
Updated copyright dates
This commit is contained in:
parent
b09a3c62dc
commit
b1674a2ef1
3 changed files with 1637 additions and 1637 deletions
66
COPYING
66
COPYING
|
@ -1,33 +1,33 @@
|
||||||
Copyright 2002-2008 Jez UK Ltd
|
Copyright 2001-2012 Jez UK Ltd
|
||||||
All rights reserved
|
All rights reserved
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or
|
Redistribution and use in source and binary forms, with or
|
||||||
without modification, are permitted provided that the following
|
without modification, are permitted provided that the following
|
||||||
conditions are met:
|
conditions are met:
|
||||||
|
|
||||||
* Redistributions of source code must retain the above
|
* Redistributions of source code must retain the above
|
||||||
copyright notice, this list of conditions and the following
|
copyright notice, this list of conditions and the following
|
||||||
disclaimer.
|
disclaimer.
|
||||||
* Redistributions in binary form must reproduce the above
|
* Redistributions in binary form must reproduce the above
|
||||||
copyright notice, this list of conditions and the following
|
copyright notice, this list of conditions and the following
|
||||||
disclaimer in the documentation and/or other materials
|
disclaimer in the documentation and/or other materials
|
||||||
provided with the distribution.
|
provided with the distribution.
|
||||||
* Neither the name of Jez UK Ltd nor the names of
|
* Neither the name of Jez UK Ltd nor the names of
|
||||||
contributors may be used to endorse or promote products
|
contributors may be used to endorse or promote products
|
||||||
derived from this software without specific prior written
|
derived from this software without specific prior written
|
||||||
permission.
|
permission.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
|
||||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||||
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
POSSIBILITY OF SUCH DAMAGE.
|
POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
3030
doc/arabica.dox
3030
doc/arabica.dox
File diff suppressed because it is too large
Load diff
|
@ -1,89 +1,89 @@
|
||||||
def ARABICA_SAX_FWD_H
|
def ARABICA_SAX_FWD_H
|
||||||
#define ARABICA_SAX_FWD_H
|
#define ARABICA_SAX_FWD_H
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
/** \mainpage Arabica XML Parser Toolkit
|
/** \mainpage Arabica XML Parser Toolkit
|
||||||
*
|
*
|
||||||
* \section intro Introduction
|
* \section intro Introduction
|
||||||
*
|
*
|
||||||
* <p>Arabica has a full <a href='http://www.saxproject.org/'>SAX2, the Simple API for XML</a>, implementation
|
* <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
|
* 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>
|
* 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>
|
* 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,
|
* <p>It delivers UTF-8 encoded std::strings or UCS-2 std::wstrings,
|
||||||
* but can also accommodate custom string types and alternative
|
* but can also accommodate custom string types and alternative
|
||||||
* encodings. </p>
|
* encodings. </p>
|
||||||
*
|
*
|
||||||
* <p>It provides uniform SAX2 wrappers for the <a href='http://www.libexpat.org/'>expat</a> parser,
|
* <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>
|
* <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>
|
* and for the <a href='http://msdn.microsoft.com/xml'>Microsoft XML parser</a> COM component.</p>
|
||||||
*
|
*
|
||||||
* \section license License
|
* \section license License
|
||||||
*
|
*
|
||||||
* Copyright (c) 2001-2010 Jez UK Ltd<br>
|
* Copyright (c) 2001-2012 Jez UK Ltd<br>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
* <p>
|
* <p>
|
||||||
* Redistribution and use in source and binary forms, with or <br>
|
* Redistribution and use in source and binary forms, with or <br>
|
||||||
* without modification, are permitted provided that the following <br>
|
* without modification, are permitted provided that the following <br>
|
||||||
* conditions are met:<br>
|
* conditions are met:<br>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Redistributions of source code must retain the above <br>
|
* <li>Redistributions of source code must retain the above <br>
|
||||||
* copyright notice, this list of conditions and the following <br>
|
* copyright notice, this list of conditions and the following <br>
|
||||||
* disclaimer.</li>
|
* disclaimer.</li>
|
||||||
* <li>Redistributions in binary form must reproduce the above <br>
|
* <li>Redistributions in binary form must reproduce the above <br>
|
||||||
* copyright notice, this list of conditions and the following <br>
|
* copyright notice, this list of conditions and the following <br>
|
||||||
* disclaimer in the documentation and/or other materials <br>
|
* disclaimer in the documentation and/or other materials <br>
|
||||||
* provided with the distribution.</li>
|
* provided with the distribution.</li>
|
||||||
* <li>Neither the name of Jez UK Ltd nor the names of <br>
|
* <li>Neither the name of Jez UK Ltd nor the names of <br>
|
||||||
* contributors may be used to endorse or promote products <br>
|
* contributors may be used to endorse or promote products <br>
|
||||||
* derived from this software without specific prior written <br>
|
* derived from this software without specific prior written <br>
|
||||||
* permission.</li>
|
* permission.</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND <br>
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND <br>
|
||||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, <br>
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, <br>
|
||||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF <br>
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF <br>
|
||||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE <br>
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE <br>
|
||||||
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE <br>
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE <br>
|
||||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, <br>
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, <br>
|
||||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, <br>
|
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, <br>
|
||||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, <br>
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, <br>
|
||||||
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY <br>
|
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY <br>
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR <br>
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR <br>
|
||||||
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT <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 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY <br>
|
||||||
* OF SUCH DAMAGE.<br>
|
* OF SUCH DAMAGE.<br>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <SAX/ParserConfig.h>
|
#include <SAX/ParserConfig.h>
|
||||||
#include <SAX/ArabicaConfig.h>
|
#include <SAX/ArabicaConfig.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* SAX in C++ - A C++ implementation of the SAX2 interface.
|
* SAX in C++ - A C++ implementation of the SAX2 interface.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
namespace Arabica
|
namespace Arabica
|
||||||
{
|
{
|
||||||
namespace SAX
|
namespace SAX
|
||||||
{
|
{
|
||||||
|
|
||||||
template<class string_type, class string_adaptor> class AttributeList;
|
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 DocumentHandler;
|
||||||
template<class string_type, class string_adaptor> class DTDHandler;
|
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 EntityResolver;
|
||||||
template<class string_type, class string_adaptor> class InputSource;
|
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 Locator;
|
||||||
template<class string_type, class string_adaptor> class Parser;
|
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 SAXParseException;
|
||||||
template<class string_type, class string_adaptor> class ErrorHandler;
|
template<class string_type, class string_adaptor> class ErrorHandler;
|
||||||
|
|
||||||
} // namespace SAX
|
} // namespace SAX
|
||||||
} // namespace Arabica
|
} // namespace Arabica
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// end of file
|
// end of file
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue