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
*
int execStatus() const;
- // Widget processing.
- const QString& xmlRepresentation() const;
- void setXmlRepresentation(const QString& xmlRepr);
-
signals:
void started();
void aborted();
//!< Next fields could be extracted into a subclass;
QString myOperationId;
- QString myXmlRepr;
std::shared_ptr<ModelAPI_Feature> myFeature;
};