From 0ed8815730d0facd5ee74439d7fed74ef64ac9a5 Mon Sep 17 00:00:00 2001 From: sbh Date: Wed, 23 Apr 2014 16:42:55 +0400 Subject: [PATCH] xmlRepresentation removed from base of operation --- src/ModuleBase/ModuleBase_Operation.cpp | 22 ---------------------- src/ModuleBase/ModuleBase_Operation.h | 5 ----- 2 files changed, 27 deletions(-) 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; }; -- 2.39.2