diff --git a/src/RWGltf/RWGltf_GltfJsonParser.cxx b/src/RWGltf/RWGltf_GltfJsonParser.cxx index e69e2f0a03..c3fc588c5f 100644 --- a/src/RWGltf/RWGltf_GltfJsonParser.cxx +++ b/src/RWGltf/RWGltf_GltfJsonParser.cxx @@ -35,6 +35,10 @@ #ifdef HAVE_RAPIDJSON namespace { +// Auxiliary macros for formatting message. +#define reportGltfError(theMsg) reportGltfSyntaxProblem(TCollection_AsciiString() + theMsg, Message_Fail); +#define reportGltfWarning(theMsg) reportGltfSyntaxProblem(TCollection_AsciiString() + theMsg, Message_Warning); + //! Material extension. static const char THE_KHR_materials_common[] = "KHR_materials_common"; static const char THE_KHR_binary_glTF[] = "KHR_binary_glTF"; @@ -416,21 +420,6 @@ void RWGltf_GltfJsonParser::GltfElementMap::Init (const TCollection_AsciiString& } } } -#endif - -// Auxiliary macros for formatting message. -#define reportGltfError(theMsg) reportGltfSyntaxProblem(TCollection_AsciiString() + theMsg, Message_Fail); -#define reportGltfWarning(theMsg) reportGltfSyntaxProblem(TCollection_AsciiString() + theMsg, Message_Warning); - -// ======================================================================= -// function : reportGltfSyntaxProblem -// purpose : -// ======================================================================= -void RWGltf_GltfJsonParser::reportGltfSyntaxProblem (const TCollection_AsciiString& theMsg, - Message_Gravity theGravity) const -{ - Message::Send (myErrorPrefix + theMsg, theGravity); -} // ======================================================================= // function : parseTransformationMatrix @@ -595,6 +584,17 @@ bool RWGltf_GltfJsonParser::parseTransformationComponents(const TCollection_Asci } return true; } +#endif + +// ======================================================================= +// function : reportGltfSyntaxProblem +// purpose : +// ======================================================================= +void RWGltf_GltfJsonParser::reportGltfSyntaxProblem (const TCollection_AsciiString& theMsg, + Message_Gravity theGravity) const +{ + Message::Send (myErrorPrefix + theMsg, theGravity); +} // ======================================================================= // function : RWGltf_GltfJsonParser diff --git a/src/RWGltf/RWGltf_GltfJsonParser.hxx b/src/RWGltf/RWGltf_GltfJsonParser.hxx index 19748ad5ed..ccb5757a19 100644 --- a/src/RWGltf/RWGltf_GltfJsonParser.hxx +++ b/src/RWGltf/RWGltf_GltfJsonParser.hxx @@ -406,10 +406,6 @@ protected: const RWGltf_JsonValue* myRoot; }; -#endif -protected: - //! Print message about invalid glTF syntax. - void reportGltfSyntaxProblem (const TCollection_AsciiString& theMsg, Message_Gravity theGravity) const; private: //! Parse transformation matrix of the node. @@ -438,6 +434,10 @@ private: const RWGltf_JsonValue* theScaleVal, const RWGltf_JsonValue* theTranslationVal, TopLoc_Location& theResult) const; +#endif +protected: + //! Print message about invalid glTF syntax. + void reportGltfSyntaxProblem (const TCollection_AsciiString& theMsg, Message_Gravity theGravity) const; protected: TopTools_SequenceOfShape* myRootShapes; //!< sequence of result root shapes