Salome HOME
xmlRepresentation removed from base of operation
authorsbh <sergey.belash@opencascade.com>
Wed, 23 Apr 2014 12:42:55 +0000 (16:42 +0400)
committersbh <sergey.belash@opencascade.com>
Wed, 23 Apr 2014 12:42:55 +0000 (16:42 +0400)
src/ModuleBase/ModuleBase_Operation.cpp
src/ModuleBase/ModuleBase_Operation.h

index ac2b3576a1a08f563205d0f708bea583ba905e3b..3c052e4753a131cc4167540f49b7daa3c1e8a3af 100644 (file)
@@ -176,28 +176,6 @@ int ModuleBase_Operation::execStatus() const
   return myExecStatus;
 }
 
-/*!
- *  \brief Returns XML representation of the operation's widget.
- *  \return XML QString
- *
- *  Returns XML representation of the operation's widget.
- */
-const QString& ModuleBase_Operation::xmlRepresentation() const
-{
-  return myXmlRepr;
-}
-
-/*!
- *  \brief Sets XML representation of the operation's widget.
- *  \param xmlRepr - XML QString
- *
- *  Sets XML representation of the operation's widget.
- */
-void ModuleBase_Operation::setXmlRepresentation(const QString& xmlRepr)
-{
-  myXmlRepr = xmlRepr;
-}
-
 /*!
  * \brief Starts operation
  *
index 1c2cfafb82e6e0bdafc379ef51cb3b82afeb2dc0..6e109860b8ca56052459d678b1f66a92f08225d8 100644 (file)
@@ -91,10 +91,6 @@ public:
 
   int execStatus() const;
 
-  // Widget processing.
-  const QString& xmlRepresentation() const;
-  void setXmlRepresentation(const QString& xmlRepr);
-
 signals:
   void started();
   void aborted();
@@ -135,7 +131,6 @@ private:
 
   //!< Next fields could be extracted into a subclass;
   QString myOperationId;
-  QString myXmlRepr;
   std::shared_ptr<ModelAPI_Feature> myFeature;
 };