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 #include "COLLADASaxFWLStableHeaders.h"
13 #include "COLLADASaxFWLGeometryLoader15.h"
14 
15 
16 namespace COLLADASaxFWL
17 {
18 
19 
begin__mesh()20 bool GeometryLoader15::begin__mesh()
21 {
22 SaxVirtualFunctionTest15(begin__mesh());
23 return mLoader->begin__mesh();
24 }
25 
26 
end__geometry()27 bool GeometryLoader15::end__geometry()
28 {
29 SaxVirtualFunctionTest15(end__geometry());
30 return mLoader->end__geometry();
31 }
32 
33 
begin__technique____technique_type(const COLLADASaxFWL15::technique____technique_type__AttributeData & attributeData)34 bool GeometryLoader15::begin__technique____technique_type( const COLLADASaxFWL15::technique____technique_type__AttributeData& attributeData )
35 {
36 SaxVirtualFunctionTest15(begin__technique____technique_type(attributeData));
37 COLLADASaxFWL::technique__AttributeData attrData;
38 attrData.profile = attributeData.profile;
39 return mLoader->begin__technique(attrData);
40 }
41 
42 
end__technique____technique_type()43 bool GeometryLoader15::end__technique____technique_type()
44 {
45 SaxVirtualFunctionTest15(end__technique____technique_type());
46 return mLoader->end__technique();
47 }
48 
49 
50 
51 }
52