From 4b6e49ca7b59d2a7021abb95009aaf5e8f52176a Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Tue, 28 Nov 2017 09:09:04 +0100 Subject: [PATCH] Update D3MFExporter.h Fix review findings. --- code/D3MFExporter.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/D3MFExporter.h b/code/D3MFExporter.h index 7227f957a..862e55fbd 100644 --- a/code/D3MFExporter.h +++ b/code/D3MFExporter.h @@ -55,7 +55,6 @@ struct zip_t; namespace Assimp { class IOStream; -class IOSystem; namespace D3MF { @@ -65,7 +64,7 @@ struct OpcPackageRelationship; class D3MFExporter { public: - D3MFExporter( const char* pFile, IOSystem* pIOSystem, const aiScene* pScene ); + D3MFExporter( const char* pFile, const aiScene* pScene ); ~D3MFExporter(); bool validate(); bool exportArchive( const char *file ); @@ -83,7 +82,6 @@ protected: void writeRelInfoToFile( const std::string &folder, const std::string &relName ); private: - IOSystem *mIOSystem; std::string mArchiveName; zip_t *m_zipArchive; const aiScene *mScene;