umbrello  2.31.70
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
petaltree2uml.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) 2006-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef PETALTREE2UML_H
12 #define PETALTREE2UML_H
13 
14 #include <QString>
15 
16 // fwd decl
17 class PetalNode;
18 class UMLPackage;
19 
27 namespace Import_Rose {
28 
29  bool importView(PetalNode *root,
30  UMLPackage *parent,
31  const QString& rootName,
32  const QString& modelsName,
33  const QString& firstNodeName,
34  const QString& presentationsName = QString());
35 
36  UMLPackage* petalTree2Uml(PetalNode *root, UMLPackage *parentPkg);
37 
38 }
39 
40 #endif
41 
Non-graphical information for a Package.
Definition: package.h:32
Definition: petalnode.h:39
bool importView(PetalNode *root, UMLPackage *parent, const QString &rootName, const QString &modelsName, const QString &firstNodeName, const QString &presentationsName)
Definition: petaltree2uml.cpp:878
UMLPackage * petalTree2Uml(PetalNode *root, UMLPackage *parentPkg)
Definition: petaltree2uml.cpp:934
Definition: import_rose.cpp:33