summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/ASELoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/ASELoader.h')
-rw-r--r--src/3rdparty/assimp/code/ASELoader.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/3rdparty/assimp/code/ASELoader.h b/src/3rdparty/assimp/code/ASELoader.h
index b775fc6bb..8a8d4faa4 100644
--- a/src/3rdparty/assimp/code/ASELoader.h
+++ b/src/3rdparty/assimp/code/ASELoader.h
@@ -2,7 +2,8 @@
Open Asset Import Library (assimp)
----------------------------------------------------------------------
-Copyright (c) 2006-2016, assimp team
+Copyright (c) 2006-2017, assimp team
+
All rights reserved.
Redistribution and use of this software in source and binary forms,
@@ -46,12 +47,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "BaseImporter.h"
#include <assimp/types.h>
+#include "ASEParser.h"
struct aiNode;
-#include "ASEParser.h"
namespace Assimp {
+#ifndef ASSIMP_BUILD_NO_3DS_IMPORTER
// --------------------------------------------------------------------------------
/** Importer class for the 3DS ASE ASCII format.
@@ -62,9 +64,6 @@ public:
ASEImporter();
~ASEImporter();
-
-public:
-
// -------------------------------------------------------------------
/** Returns whether the class can handle the format of the given file.
* See BaseImporter::CanRead() for details.
@@ -200,6 +199,9 @@ protected:
bool noSkeletonMesh;
};
+#endif // ASSIMP_BUILD_NO_3DS_IMPORTER
+
} // end of namespace Assimp
+
#endif // AI_3DSIMPORTER_H_INC