umbrello  2.31.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
node.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2003-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef NODE_H
12 #define NODE_H
13 
14 #include "umlcanvasobject.h"
15 
26 class UMLNode : public UMLCanvasObject
27 {
28  Q_OBJECT
29 public:
30 
31  explicit UMLNode(const QString & name = QString(), Uml::ID::Type id = Uml::ID::None);
32  virtual ~UMLNode();
33 
34  virtual void init();
35 
36  virtual UMLObject* clone() const;
37 
38  void saveToXMI1(QDomDocument & qDoc, QDomElement & qElement);
39 
40 protected:
41 
42  bool load1(QDomElement & element);
43 
44 };
45 
46 #endif
UMLNode::clone
virtual UMLObject * clone() const
Definition: node.cpp:45
UMLNode::load1
bool load1(QDomElement &element)
Definition: node.cpp:64
UMLObject::name
QString name() const
Definition: umlobject.cpp:211
UMLCanvasObject
Non-graphical information for a UMLCanvasObject.
Definition: umlcanvasobject.h:34
Uml::ID::None
const Type None
special value for uninitialized ID
Definition: basictypes.h:370
umlcanvasobject.h
Uml::ID::Type
std::string Type
Definition: basictypes.h:368
UMLObject
The base class for UML objects.
Definition: umlobject.h:74
UMLObject::m_BaseType
ObjectType m_BaseType
objects type
Definition: umlobject.h:276
node.h
UMLObject::save1
QDomElement save1(const QString &tag, QDomDocument &qDoc)
Definition: umlobject.cpp:844
UMLObject::copyInto
virtual void copyInto(UMLObject *lhs) const
Definition: umlobject.cpp:314
UMLObject::ot_Node
@ ot_Node
Definition: umlobject.h:98
UMLNode::saveToXMI1
void saveToXMI1(QDomDocument &qDoc, QDomElement &qElement)
Definition: node.cpp:55
UMLNode::UMLNode
UMLNode(const QString &name=QString(), Uml::ID::Type id=Uml::ID::None)
Definition: node.cpp:21
UMLNode::~UMLNode
virtual ~UMLNode()
Definition: node.cpp:30
UMLNode::init
virtual void init()
Definition: node.cpp:37
UMLNode
Non-graphical information for a Node.
Definition: node.h:27