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 #include "COLLADASaxFWLStableHeaders.h"
12 #include "COLLADASaxFWLLibraryFormulasLoader.h"
13 
14 
15 namespace COLLADASaxFWL
16 {
17 
18     //-----------------------------------------------------------------
LibraryFormulasLoader(IFilePartLoader * callingFilePartLoader)19     LibraryFormulasLoader::LibraryFormulasLoader( IFilePartLoader* callingFilePartLoader )
20         : FilePartLoader( callingFilePartLoader )
21 		, FormulasLoader( )
22     {
23 		FormulasLoader::setHandlingFilePartLoader(this);
24     }
25 
26     //-----------------------------------------------------------------
~LibraryFormulasLoader()27     LibraryFormulasLoader::~LibraryFormulasLoader()
28     {
29     }
30 
31     //-----------------------------------------------------------------
end__library_formulas()32     bool LibraryFormulasLoader::end__library_formulas()
33     {
34         finish();
35         return true;
36     }
37 
38 
39 } // namespace COLLADASaxFWL
40