Step-Importer: introduce new files.

This commit is contained in:
Kim Kulling
2018-08-26 19:05:21 +02:00
parent 8ceca4daaf
commit c75bc99902
5 changed files with 78 additions and 8 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include <assimp/BaseImporter.h>
namespace Assimp {
namespace STEP {
class StepFileImporter : public BaseImporter {
public:
StepFileImporter();
~StepFileImporter();
bool CanRead(const std::string& pFile, IOSystem* pIOHandler, bool checkSig) const override;
const aiImporterDesc* GetInfo() const override;
protected:
void InternReadFile( const std::string& pFile, aiScene* pScene, IOSystem* pIOHandler ) override;
private:
};
}
}