瀏覽代碼

Fix removed AssimpPCH

Madrich 10 年之前
父節點
當前提交
148207a073
共有 2 個文件被更改,包括 8 次插入1 次删除
  1. 6 1
      code/StepExporter.cpp
  2. 2 0
      code/StepExporter.h

+ 6 - 1
code/StepExporter.cpp

@@ -39,13 +39,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ----------------------------------------------------------------------
 ----------------------------------------------------------------------
 */
 */
 
 
-#include "AssimpPCH.h"
 
 
 #ifndef ASSIMP_BUILD_NO_EXPORT
 #ifndef ASSIMP_BUILD_NO_EXPORT
 #ifndef ASSIMP_BUILD_NO_STEP_EXPORTER
 #ifndef ASSIMP_BUILD_NO_STEP_EXPORTER
 #include "StepExporter.h"
 #include "StepExporter.h"
 #include "ConvertToLHProcess.h"
 #include "ConvertToLHProcess.h"
 #include "Bitmap.h"
 #include "Bitmap.h"
+#include "BaseImporter.h"
 #include "fast_atof.h"
 #include "fast_atof.h"
 #include "SceneCombiner.h" 
 #include "SceneCombiner.h" 
 
 
@@ -53,6 +53,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #include <set>
 #include <set>
 #include <map>
 #include <map>
 #include <list>
 #include <list>
+#include <boost/scoped_ptr.hpp>
+#include "Exceptional.h"
+#include "../include/assimp/IOSystem.hpp"
+#include "../include/assimp/scene.h"
+#include "../include/assimp/light.h"
 
 
 /* Tested with Step viewer v4 from www.ida-step.net */
 /* Tested with Step viewer v4 from www.ida-step.net */
 
 

+ 2 - 0
code/StepExporter.h

@@ -47,6 +47,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #define AI_STEPEXPORTER_H_INC
 #define AI_STEPEXPORTER_H_INC
 
 
 #include "../include/assimp/ai_assert.h"
 #include "../include/assimp/ai_assert.h"
+#include "../include/assimp/matrix4x4.h"
+#include "../include/assimp/Exporter.hpp"
 #include <sstream>
 #include <sstream>
 
 
 struct aiScene;
 struct aiScene;