From: akaftasev Date: Wed, 14 Apr 2021 15:00:09 +0000 (+0300) Subject: Make BOPAlgo_Algo::AnalyzeProgress() inline method X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=1bb593247ccfe51dd2abea8c682cc5868fa749b6;p=occt-copy.git Make BOPAlgo_Algo::AnalyzeProgress() inline method --- diff --git a/src/BOPAlgo/BOPAlgo_Algo.cxx b/src/BOPAlgo/BOPAlgo_Algo.cxx index e8f67c9928..7fde5edebe 100644 --- a/src/BOPAlgo/BOPAlgo_Algo.cxx +++ b/src/BOPAlgo/BOPAlgo_Algo.cxx @@ -61,7 +61,3 @@ void BOPAlgo_Algo::CheckResult() GetReport()->Clear(Message_Fail); } -NCollection_Array1 BOPAlgo_Algo::AnalyzeProgress() -{ - return NCollection_Array1(); -} diff --git a/src/BOPAlgo/BOPAlgo_Algo.hxx b/src/BOPAlgo/BOPAlgo_Algo.hxx index bfe8052122..42920ef589 100644 --- a/src/BOPAlgo/BOPAlgo_Algo.hxx +++ b/src/BOPAlgo/BOPAlgo_Algo.hxx @@ -50,7 +50,10 @@ protected: Standard_EXPORT virtual void CheckResult(); //! Analyze progress steps - Standard_EXPORT virtual NCollection_Array1 AnalyzeProgress(); + virtual NCollection_Array1 AnalyzeProgress() + { + return NCollection_Array1(); + }; }; diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx b/src/BOPAlgo/BOPAlgo_PaveFiller.hxx index af56b86aa3..c2d55ff4e5 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.hxx @@ -232,7 +232,7 @@ protected: Standard_EXPORT void SplitPaveBlocks(const TColStd_MapOfInteger& theMEdges, const Standard_Boolean theAddInterfs); - Standard_EXPORT virtual NCollection_Array1 AnalyzeProgress() Standard_OVERRIDE; + Standard_EXPORT NCollection_Array1 AnalyzeProgress() Standard_OVERRIDE; Standard_EXPORT virtual void PerformVF(const Message_ProgressRange& theRange);