umbrello  2.32.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(QXmlStreamWriter& writer);
39 
40 protected:
41 
42  bool load1(QDomElement & element);
43 
44 };
45 
46 #endif
Non-graphical information for a UMLCanvasObject.
Definition: umlcanvasobject.h:37
Non-graphical information for a Node.
Definition: node.h:27
virtual void init()
Definition: node.cpp:37
bool load1(QDomElement &element)
Definition: node.cpp:64
UMLNode(const QString &name=QString(), Uml::ID::Type id=Uml::ID::None)
Definition: node.cpp:21
virtual ~UMLNode()
Definition: node.cpp:30
void saveToXMI1(QXmlStreamWriter &writer)
Definition: node.cpp:55
virtual UMLObject * clone() const
Definition: node.cpp:45
The base class for UML objects.
Definition: umlobject.h:75
QString name() const
Definition: umlobject.cpp:211
const Type None
special value for uninitialized ID
Definition: basictypes.h:387
std::string Type
Definition: basictypes.h:385