Update D3MFExporter.h

Fix review findings.
pull/1598/head
Kim Kulling 2017-11-28 09:09:04 +01:00 committed by GitHub
parent 4f972661e8
commit 4b6e49ca7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -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;