summaryrefslogtreecommitdiffstats
path: root/src/uml/qumlcontrolflow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uml/qumlcontrolflow.cpp')
-rw-r--r--src/uml/qumlcontrolflow.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/uml/qumlcontrolflow.cpp b/src/uml/qumlcontrolflow.cpp
index 3a724f96..e8eb2eeb 100644
--- a/src/uml/qumlcontrolflow.cpp
+++ b/src/uml/qumlcontrolflow.cpp
@@ -68,12 +68,19 @@ QT_BEGIN_NAMESPACE
\brief A control flow is an edge that starts an activity node after the previous one is finished.
*/
+
+/*!
+ Creates a new QUmlControlFlow. Also creates the corresponding QObject-based representation returned by asQModelingObject() if \a createQModelingObject is true.
+*/
QUmlControlFlow::QUmlControlFlow(bool createQModelingObject)
{
if (createQModelingObject)
_qModelingObject = qobject_cast<QModelingObject *>(new QUmlControlFlowObject(this));
}
+/*!
+ Returns a deep-copied clone of the QUmlControlFlow.
+*/
QModelingElement *QUmlControlFlow::clone() const
{
QUmlControlFlow *c = new QUmlControlFlow;