ColladaParser: use initializer lists again.

pull/706/head
Kim Kulling 2015-12-09 23:49:03 +01:00
parent bcff6210b3
commit 35fafe3a6f
2 changed files with 15 additions and 17 deletions

View File

@ -66,18 +66,18 @@ using namespace Assimp::Collada;
ColladaParser::ColladaParser( IOSystem* pIOHandler, const std::string& pFile)
: mFileName( pFile )
, mReader( NULL )
//, mDataLibrary()
//, mAccessorLibrary()
//, mMeshLibrary()
//, mNodeLibrary()
//, mImageLibrary()
//, mEffectLibrary()
//, mMaterialLibrary()
//, mLightLibrary()
//, mCameraLibrary()
//, mControllerLibrary()
, mDataLibrary()
, mAccessorLibrary()
, mMeshLibrary()
, mNodeLibrary()
, mImageLibrary()
, mEffectLibrary()
, mMaterialLibrary()
, mLightLibrary()
, mCameraLibrary()
, mControllerLibrary()
, mRootNode( NULL )
//, mAnims()
, mAnims()
, mUnitSize( 1.0f )
, mUpDirection( UP_Y )
, mFormat(FV_1_5_n ) // We assume the newest file format by default
@ -102,9 +102,6 @@ ColladaParser::ColladaParser( IOSystem* pIOHandler, const std::string& pFile)
// start reading
ReadContents();
// release file after import
//pIOHandler->Close( file.get() );
}
// ------------------------------------------------------------------------------------------------

View File

@ -49,6 +49,7 @@
#include "ColladaHelper.h"
#include "../include/assimp/ai_assert.h"
#include <boost/format.hpp>
#include <boost/scoped_ptr.hpp>
namespace Assimp
{