From: sbh Date: Wed, 23 Apr 2014 12:42:55 +0000 (+0400) Subject: xmlRepresentation removed from base of operation X-Git-Tag: V_0.2~118^2~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=0ed8815730d0facd5ee74439d7fed74ef64ac9a5;p=modules%2Fshaper.git xmlRepresentation removed from base of operation --- diff --git a/src/ModuleBase/ModuleBase_Operation.cpp b/src/ModuleBase/ModuleBase_Operation.cpp index ac2b3576a..3c052e475 100644 --- a/src/ModuleBase/ModuleBase_Operation.cpp +++ b/src/ModuleBase/ModuleBase_Operation.cpp @@ -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 * diff --git a/src/ModuleBase/ModuleBase_Operation.h b/src/ModuleBase/ModuleBase_Operation.h index 1c2cfafb8..6e109860b 100644 --- a/src/ModuleBase/ModuleBase_Operation.h +++ b/src/ModuleBase/ModuleBase_Operation.h @@ -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 myFeature; };