umbrello 25.04.1
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 SPDX-License-Identifier: GPL-2.0-or-later
3 SPDX-FileCopyrightText: 2006-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4*/
5
6#ifndef PETALTREE2UML_H
7#define PETALTREE2UML_H
8
9#include <QString>
10
11// fwd decl
12class PetalNode;
13class UMLPackage;
14
22namespace Import_Rose {
23
24 bool importView(PetalNode *root,
25 UMLPackage *parent,
26 const QString& rootName,
27 const QString& modelsName,
28 const QString& firstNodeName,
29 const QString& presentationsName = QString());
30
31 UMLPackage* petalTree2Uml(PetalNode *root, UMLPackage *parentPkg);
32
33}
34
35#endif
36
Definition petalnode.h:35
Non-graphical information for a Package.
Definition package.h:28
Definition import_rose.cpp:31
bool importView(PetalNode *root, UMLPackage *parent, const QString &rootName, const QString &modelsName, const QString &firstNodeName, const QString &presentationsName)
Definition petaltree2uml.cpp:1314
UMLPackage * petalTree2Uml(PetalNode *root, UMLPackage *parentPkg)
Definition petaltree2uml.cpp:1389