use correct type in forward declaration.

Signed-off-by: Kim Kulling <kim.kulling@googlemail.com>
pull/538/head
Kim Kulling 2015-04-16 12:32:35 +02:00
parent 97946e25c9
commit d12868adc4
4 changed files with 17 additions and 17 deletions

View File

@ -48,16 +48,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "BaseImporter.h" #include "BaseImporter.h"
#include "../include/assimp/types.h" #include "../include/assimp/types.h"
class aiMesh; struct aiMesh;
class aiNode; struct aiNode;
class aiBone; struct aiBone;
class aiMaterial; struct aiMaterial;
class aiMaterialProperty; struct aiMaterialProperty;
class aiNodeAnim; struct aiNodeAnim;
class aiAnimation; struct aiAnimation;
class aiTexture; struct aiTexture;
class aiLight; struct aiLight;
class aiCamera; struct aiCamera;
#ifndef ASSIMP_BUILD_NO_ASSBIN_IMPORTER #ifndef ASSIMP_BUILD_NO_ASSBIN_IMPORTER

View File

@ -49,17 +49,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <vector> #include <vector>
#include <set> #include <set>
#include "../include/assimp/types.h" #include "../include/assimp/types.h"
#include "../include/assimp/ProgressHandler.hpp" #include "../include/assimp/ProgressHandler.hpp"
struct aiScene; struct aiScene;
namespace Assimp { namespace Assimp {
class Importer; class Importer;
class IOSystem; class IOSystem;
class BaseProcess; class BaseProcess;
class SharedPostProcessInfo; class SharedPostProcessInfo;
class IOStream; class IOStream;
// utility to do char4 to uint32 in a portable manner // utility to do char4 to uint32 in a portable manner

View File

@ -44,7 +44,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef INCLUDED_AI_FBX_CONVERTER_H #ifndef INCLUDED_AI_FBX_CONVERTER_H
#define INCLUDED_AI_FBX_CONVERTER_H #define INCLUDED_AI_FBX_CONVERTER_H
class aiScene; struct aiScene;
namespace Assimp { namespace Assimp {
namespace FBX { namespace FBX {

View File

@ -56,9 +56,9 @@ struct aiNode;
struct aiMesh; struct aiMesh;
struct aiString; struct aiString;
namespace Assimp namespace Assimp {
{
struct IOSystem; class IOSystem;
/// Helper class to export a given scene to a X-file. /// Helper class to export a given scene to a X-file.