ソースを参照

Update D3MFExporter.h

Fix review findings.
Kim Kulling 7 年 前
コミット
4b6e49ca7b
1 ファイル変更1 行追加3 行削除
  1. 1 3
      code/D3MFExporter.h

+ 1 - 3
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;