Salome HOME
Start of the edit should not change the current feature.
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.h
index 01a351d1ddc19ed1ea0821057c22c2e242847b7c..12e5ddb86a91ef2d4f581da500541337fb292c53 100644 (file)
@@ -63,14 +63,6 @@ Q_OBJECT
   /// \param theList an ids
   void setGrantedOperationIds(const QStringList& theList);
 
-  /// Appends an operation index to be granted
-  /// \param theId an index
-  void addGrantedOperationId(const QString& theId);
-
-  /// Removes an operation index from the granted
-  /// \param theId an index
-  void removeGrantedOperationId(const QString& theId);
-
   /// Must return true if this operation can be launched as nested for any current operation
   /// and it is not necessary to check this operation on validity. By default 
   /// the operation is not granted.
@@ -99,12 +91,15 @@ Q_OBJECT
 
 signals:
   /// The operation is started
+  void beforeStarted();
   void started();
 
   /// The operation is aborted
+  void beforeAborted();
   void aborted();
 
   /// The operation is committed
+  void beforeCommitted();
   void committed();
 
   /// The operation is aborted or committed