use correct type in forward declaration.
Signed-off-by: Kim Kulling <kim.kulling@googlemail.com>pull/538/head
parent
97946e25c9
commit
d12868adc4
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue