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 "COLLADASaxFWLLibraryJointsLoader.h"
13 
14 namespace COLLADASaxFWL
15 {
16 
17     //------------------------------
LibraryJointsLoader(IFilePartLoader * callingFilePartLoader)18 	LibraryJointsLoader::LibraryJointsLoader( IFilePartLoader* callingFilePartLoader )
19 		: FilePartLoader(callingFilePartLoader)
20 	{
21 		mJointsLoader.setHandlingFilePartLoader(this);
22 	}
23 
24     //------------------------------
~LibraryJointsLoader()25 	LibraryJointsLoader::~LibraryJointsLoader()
26 	{
27 	}
28 
29     //------------------------------
getUniqueId()30     const COLLADAFW::UniqueId& LibraryJointsLoader::getUniqueId ()
31     {
32         return mJointsLoader.getUniqueId ();
33     }
34 
35     //------------------------------
end__library_joints()36 	bool LibraryJointsLoader::end__library_joints()
37 	{
38 		moveUpInSidTree();
39 		finish();
40 		return true;
41 	}
42 
43 } // namespace COLLADASaxFWL
44