Added AC-loader, WIP version. PLY loader is now able to load models from blender, test model added. Refactoring. Added FindInvalidData step. Added support for precompiled headers, the release builds in VC8 are configued to use PCH now. Added separate makefile for mingw, no -FPic warning anymore, -clear works now. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@176 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
|
|
|
|
#ifndef ASSIMP_PCH_INCLUDED
|
|
#define ASSIMP_PCH_INCLUDED
|
|
|
|
// STL headers
|
|
#include <vector>
|
|
#include <list>
|
|
#include <map>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
#include <cassert>
|
|
#include <stack>
|
|
#include <queue>
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
|
|
// public ASSIMP headers
|
|
#include "../include/DefaultLogger.h"
|
|
#include "../include/IOStream.h"
|
|
#include "../include/IOSystem.h"
|
|
#include "../include/aiScene.h"
|
|
#include "../include/aiPostProcess.h"
|
|
#include "../include/assimp.hpp"
|
|
|
|
// internal headers that are nearly always required
|
|
#include "MaterialSystem.h"
|
|
#include "StringComparison.h"
|
|
#include "ByteSwap.h"
|
|
#include "qnan.h"
|
|
|
|
// boost headers - take them from the workaround dir if possible
|
|
#ifdef ASSIMP_BUILD_BOOST_WORKAROUND
|
|
|
|
# include "../include/BoostWorkaround/boost/scoped_ptr.hpp"
|
|
# include "../include/BoostWorkaround/boost/format.hpp"
|
|
#else
|
|
|
|
# include <boost/scoped_ptr.hpp>
|
|
# include <boost/format.hpp>
|
|
|
|
#endif
|
|
|
|
#endif // !! ASSIMP_PCH_INCLUDED
|
|
|