X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOM%2FGEOM_IOperations.hxx;h=3567b77dabc62c5eac7546cff8f0e9b0a9b072db;hb=d617faae6bc5aeb91b63796618a20c7c13037b6c;hp=098587a85f234521bc35c9b758e8c40b8ea5f52a;hpb=bd2042b4d19d69deaf182edda40bbff83e53490a;p=modules%2Fgeom.git diff --git a/src/GEOM/GEOM_IOperations.hxx b/src/GEOM/GEOM_IOperations.hxx index 098587a85..3567b77da 100644 --- a/src/GEOM/GEOM_IOperations.hxx +++ b/src/GEOM/GEOM_IOperations.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -39,7 +39,7 @@ class GEOM_IOperations { public: - Standard_EXPORT GEOM_IOperations(GEOM_Engine* theEngine, int theDocID); + Standard_EXPORT GEOM_IOperations(GEOM_Engine* theEngine); Standard_EXPORT ~GEOM_IOperations(); //Starts a new operation (opens a tansaction) @@ -73,15 +73,11 @@ class GEOM_IOperations //Return a pointer to Solver associated with this operation interface Standard_EXPORT GEOM_Solver* GetSolver() { return _solver; } - //Returns an ID of the OCAF document where this operation stores the data - Standard_EXPORT int GetDocID() { return _docID; } - private: TCollection_AsciiString _errorCode; GEOM_Engine* _engine; GEOM_Solver* _solver; - int _docID; };