~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to GeneratedSaxParser/include/GeneratedSaxParser.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2008-2009 NetAllied Systems GmbH
 
3
 
 
4
    This file is part of GeneratedSaxParser.
 
5
 
 
6
    Licensed under the MIT Open Source License, 
 
7
    for details please see LICENSE file or the website
 
8
    http://www.opensource.org/licenses/mit-license.php
 
9
*/
 
10
 
 
11
#ifndef __GENERATEDSAXPARSER_H__
 
12
#define __GENERATEDSAXPARSER_H__
 
13
 
 
14
 
 
15
// This header includes all headers needed to use this library.
 
16
// note: you have to set one of these preprocessor flags:
 
17
// - GENERATEDSAXPARSER_XMLPARSER_LIBXML
 
18
// - GENERATEDSAXPARSER_XMLPARSER_EXPAT
 
19
#include "GeneratedSaxParserPrerequisites.h"
 
20
#include "GeneratedSaxParserStackMemoryManager.h"
 
21
#include "GeneratedSaxParserTypes.h"
 
22
#include "GeneratedSaxParserUtils.h"
 
23
#include "GeneratedSaxParserIErrorHandler.h"
 
24
#include "GeneratedSaxParserCoutErrorHandler.h"
 
25
#include "GeneratedSaxParserIUnknownElementHandler.h"
 
26
#include "GeneratedSaxParserINamespaceHandler.h"
 
27
#include "GeneratedSaxParserNamespaceStack.h"
 
28
#include "GeneratedSaxParserParserError.h"
 
29
#include "GeneratedSaxParserParser.h"
 
30
#include "GeneratedSaxParserSaxParser.h"
 
31
#if defined(GENERATEDSAXPARSER_XMLPARSER_LIBXML)
 
32
#include "GeneratedSaxParserLibxmlSaxParser.h"
 
33
#elif defined(GENERATEDSAXPARSER_XMLPARSER_EXPAT)
 
34
#include "GeneratedSaxParserExpatSaxParser.h"
 
35
#endif
 
36
#include "GeneratedSaxParserParserTemplateBase.h"
 
37
#include "GeneratedSaxParserParserTemplate.h"
 
38
 
 
39
#endif // __GENERATEDSAXPARSER_H__