- FBX importer: basic interface and importer skeleton. Start tokenizer and parser.

This commit is contained in:
acgessler
2012-06-23 03:36:55 +02:00
parent 4e9a0bba20
commit 18b2aebcb1
9 changed files with 2234 additions and 1298 deletions

View File

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