mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 01:07:09 +02:00
Remove unused default constructor for GLTFSerializer
This commit is contained in:
parent
a04c822ef0
commit
a63888cac8
2 changed files with 0 additions and 7 deletions
|
@ -36,11 +36,6 @@
|
||||||
#include "FBXSerializer.h"
|
#include "FBXSerializer.h"
|
||||||
#include <hfm/HFMSimpleFormat.h>
|
#include <hfm/HFMSimpleFormat.h>
|
||||||
|
|
||||||
|
|
||||||
GLTFSerializer::GLTFSerializer() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool GLTFSerializer::getStringVal(const QJsonObject& object, const QString& fieldname,
|
bool GLTFSerializer::getStringVal(const QJsonObject& object, const QString& fieldname,
|
||||||
QString& value, QMap<QString, bool>& defined) {
|
QString& value, QMap<QString, bool>& defined) {
|
||||||
bool _defined = (object.contains(fieldname) && object[fieldname].isString());
|
bool _defined = (object.contains(fieldname) && object[fieldname].isString());
|
||||||
|
|
|
@ -704,8 +704,6 @@ struct GLTFFile {
|
||||||
class GLTFSerializer : public QObject, public HFMSerializer {
|
class GLTFSerializer : public QObject, public HFMSerializer {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
GLTFSerializer();
|
|
||||||
|
|
||||||
static std::shared_ptr<hfm::Format> FORMAT;
|
static std::shared_ptr<hfm::Format> FORMAT;
|
||||||
|
|
||||||
HFMModel::Pointer read(const QByteArray& data, const QVariantHash& mapping, const QUrl& url = QUrl()) override;
|
HFMModel::Pointer read(const QByteArray& data, const QVariantHash& mapping, const QUrl& url = QUrl()) override;
|
||||||
|
|
Loading…
Reference in a new issue