Fix: Use ASCII treeview in assimp-cmd.

This commit is contained in:
Kim Kulling
2022-09-16 21:55:14 +02:00
parent 7be7e5d93e
commit e4c77aa4fa
6 changed files with 19 additions and 23 deletions

View File

@@ -75,15 +75,10 @@ static const aiImporterDesc desc = {
// ------------------------------------------------------------------------------------------------
// Constructor to be privately used by Importer
XFileImporter::XFileImporter()
: mBuffer() {
XFileImporter::XFileImporter() : mBuffer() {
// empty
}
// ------------------------------------------------------------------------------------------------
// Destructor, private as well
XFileImporter::~XFileImporter() = default;
// ------------------------------------------------------------------------------------------------
// Returns whether the class can handle the format of the given file.
bool XFileImporter::CanRead( const std::string& pFile, IOSystem* pIOHandler, bool /*checkSig*/) const {

View File

@@ -69,7 +69,7 @@ namespace XFile {
class XFileImporter : public BaseImporter {
public:
XFileImporter();
~XFileImporter() override;
~XFileImporter() override = default;
// -------------------------------------------------------------------
/** Returns whether the class can handle the format of the given file.

View File

@@ -42,9 +42,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#pragma once
#ifdef ASSIMP_BUILD_NO_OWN_ZLIB
#include <zlib.h>
# include <zlib.h>
#else
#include "../contrib/zlib/zlib.h"
# include "../contrib/zlib/zlib.h"
#endif
#include <vector>