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

« back to all changes in this revision

Viewing changes to COLLADASaxFrameworkLoader/include/generated15/COLLADASaxFWLAssetLoader15.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 COLLADASaxFrameworkLoader.
 
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
 
 
12
#ifndef __COLLADASAXFWL_ASSETLOADER15_H__
 
13
#define __COLLADASAXFWL_ASSETLOADER15_H__
 
14
 
 
15
 
 
16
#include "COLLADASaxFWLPrerequisites.h"
 
17
#include "COLLADASaxFWLAssetLoader.h"
 
18
#include "COLLADASaxFWLIParserImpl15.h"
 
19
 
 
20
 
 
21
namespace COLLADASaxFWL
 
22
{
 
23
 
 
24
 
 
25
class IFilePartLoader;
 
26
 
 
27
 
 
28
class AssetLoader15 : public IParserImpl15
 
29
{
 
30
private:
 
31
AssetLoader* mLoader;
 
32
 
 
33
public:
 
34
AssetLoader15(AssetLoader* loader)
 
35
 : mLoader(loader)
 
36
{}
 
37
 
 
38
 
 
39
virtual bool end__asset();
 
40
 
 
41
virtual bool begin__contributor();
 
42
 
 
43
virtual bool end__contributor();
 
44
 
 
45
virtual bool begin__author();
 
46
 
 
47
virtual bool end__author();
 
48
 
 
49
virtual bool data__author( const ParserChar* data, size_t length );
 
50
 
 
51
virtual bool begin__authoring_tool();
 
52
 
 
53
virtual bool end__authoring_tool();
 
54
 
 
55
virtual bool data__authoring_tool( const ParserChar* data, size_t length );
 
56
 
 
57
virtual bool begin__comments();
 
58
 
 
59
virtual bool end__comments();
 
60
 
 
61
virtual bool data__comments( const ParserChar* data, size_t length );
 
62
 
 
63
virtual bool begin__copyright();
 
64
 
 
65
virtual bool end__copyright();
 
66
 
 
67
virtual bool data__copyright( const ParserChar* data, size_t length );
 
68
 
 
69
virtual bool begin__source_data();
 
70
 
 
71
virtual bool end__source_data();
 
72
 
 
73
virtual bool data__source_data( COLLADABU::URI value );
 
74
 
 
75
virtual bool begin__created();
 
76
 
 
77
virtual bool end__created();
 
78
 
 
79
virtual bool data__created( const ParserChar* data, size_t length );
 
80
 
 
81
virtual bool begin__keywords();
 
82
 
 
83
virtual bool end__keywords();
 
84
 
 
85
virtual bool data__keywords( const ParserChar* data, size_t length );
 
86
 
 
87
virtual bool begin__modified();
 
88
 
 
89
virtual bool end__modified();
 
90
 
 
91
virtual bool data__modified( const ParserChar* data, size_t length );
 
92
 
 
93
virtual bool begin__revision();
 
94
 
 
95
virtual bool end__revision();
 
96
 
 
97
virtual bool data__revision( const ParserChar* data, size_t length );
 
98
 
 
99
virtual bool begin__subject();
 
100
 
 
101
virtual bool end__subject();
 
102
 
 
103
virtual bool data__subject( const ParserChar* data, size_t length );
 
104
 
 
105
virtual bool begin__title();
 
106
 
 
107
virtual bool end__title();
 
108
 
 
109
virtual bool data__title( const ParserChar* data, size_t length );
 
110
 
 
111
virtual bool begin__unit( const COLLADASaxFWL15::unit__AttributeData& attributeData );
 
112
 
 
113
virtual bool end__unit();
 
114
 
 
115
virtual bool begin__up_axis();
 
116
 
 
117
virtual bool end__up_axis();
 
118
 
 
119
virtual bool data__up_axis( const COLLADASaxFWL15::ENUM__up_axis_enum value );
 
120
 
 
121
virtual bool begin__technique____technique_type( const COLLADASaxFWL15::technique____technique_type__AttributeData& attributeData );
 
122
 
 
123
virtual bool end__technique____technique_type();
 
124
 
 
125
 
 
126
private:
 
127
/** Disable default copy ctor. */
 
128
AssetLoader15(const AssetLoader15&);
 
129
/** Disable default assignment operator. */
 
130
const AssetLoader15& operator=(const AssetLoader15&);
 
131
};
 
132
}
 
133
#endif // __COLLADASAXFWL_ASSETLOADER15_H__