add basic framework for importer

This commit is contained in:
Gargaj
2014-08-06 00:39:54 +02:00
parent cd86818888
commit 0f822d38cd
3 changed files with 155 additions and 1 deletions

View File

@@ -166,6 +166,9 @@ corresponding preprocessor flag to selectively disable formats.
#ifndef ASSIMP_BUILD_NO_FBX_IMPORTER
# include "FBXImporter.h"
#endif
#ifndef ASSIMP_BUILD_NO_ASSBIN_IMPORTER
# include "AssbinLoader.h"
#endif
namespace Assimp {
@@ -289,7 +292,10 @@ void GetImporterInstanceList(std::vector< BaseImporter* >& out)
out.push_back( new XGLImporter() );
#endif
#if ( !defined ASSIMP_BUILD_NO_FBX_IMPORTER )
out.push_back( new FBXImporter() );
out.push_back( new FBXImporter() );
#endif
#if ( !defined ASSIMP_BUILD_NO_ASSBIN_IMPORTER )
out.push_back( new AssbinImporter() );
#endif
}