- add mFileExtensions field to aiImporterDesc, BaseImporter::GetExtensionList is now longer virtual since this would be redundant.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1234 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
@@ -52,6 +52,19 @@ using namespace std;
|
||||
#include "TinyFormatter.h"
|
||||
#include "irrXMLWrapper.h"
|
||||
|
||||
static const aiImporterDesc desc = {
|
||||
"Ogre XML Mesh Importer",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
aiImporterFlags_SupportTextFlavour,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
"mesh.xml"
|
||||
};
|
||||
|
||||
namespace Assimp
|
||||
{
|
||||
namespace Ogre
|
||||
@@ -222,9 +235,9 @@ void OgreImporter::InternReadFile(const std::string &pFile, aiScene *pScene, Ass
|
||||
}
|
||||
|
||||
|
||||
void OgreImporter::GetExtensionList(std::set<std::string>& extensions)
|
||||
const aiImporterDesc* OgreImporter::GetInfo () const
|
||||
{
|
||||
extensions.insert("mesh.xml");
|
||||
return &desc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user