summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/actor.cpp')
-rw-r--r--umbrello/umbrello/actor.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/umbrello/umbrello/actor.cpp b/umbrello/umbrello/actor.cpp
new file mode 100644
index 00000000..6e09c506
--- /dev/null
+++ b/umbrello/umbrello/actor.cpp
@@ -0,0 +1,40 @@
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * copyright (C) 2002-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+#include "actor.h"
+
+UMLActor::UMLActor(const QString & name, Uml::IDType id) : UMLCanvasObject(name, id) {
+ init();
+}
+
+UMLActor::~UMLActor() {}
+
+void UMLActor::init() {
+ m_BaseType = Uml::ot_Actor;
+}
+
+UMLObject* UMLActor::clone() const {
+ UMLActor *clone = new UMLActor();
+ UMLObject::copyInto(clone);
+ return clone;
+}
+
+void UMLActor::saveToXMI(QDomDocument& qDoc, QDomElement& qElement) {
+ QDomElement actorElement = UMLObject::save("UML:Actor", qDoc);
+ qElement.appendChild(actorElement);
+}
+
+bool UMLActor::load(QDomElement&) {
+ return true;
+}
+
+
+#include "actor.moc"