Salome HOME
[bos #29472] [EDF] (2022-T1) Advanced geometry features: curvature vector on a point...
[modules/geom.git] / src / GEOM / GEOM_IOperations.hxx
index d38a749c32abed5747811fd3ace5c058cd40058f..c4a052183d54dc6b7fe60fe6bd3946bd20dfcc5e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, 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;
 
 };