umbrello  2.31.90
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
import_argo.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 IMPORT_ARGO_H
12 #define IMPORT_ARGO_H
13 
14 #include <QIODevice>
15 
16 class UMLPackage;
17 class KZip;
18 
26 {
27 public:
28  static bool loadFromZArgoFile(QIODevice & file, UMLPackage *parentPkg = 0);
29 
30 protected:
31  static bool loadFromArgoFile(const KZip &zipFile, const QString &fileName);
32  static bool loadFromPGMLFile(const KZip &zipFile, const QString &fileName);
33  static bool loadFromTodoFile(const KZip &zipFile, const QString &fileName);
34  static bool loadFromXMIFile(const KZip &zipFile, const QString &fileName);
35 };
36 
37 #endif
Definition: import_argo.h:26
static bool loadFromTodoFile(const KZip &zipFile, const QString &fileName)
Definition: import_argo.cpp:94
static bool loadFromXMIFile(const KZip &zipFile, const QString &fileName)
Definition: import_argo.cpp:114
static bool loadFromZArgoFile(QIODevice &file, UMLPackage *parentPkg=0)
Definition: import_argo.cpp:140
static bool loadFromPGMLFile(const KZip &zipFile, const QString &fileName)
Definition: import_argo.cpp:74
static bool loadFromArgoFile(const KZip &zipFile, const QString &fileName)
Definition: import_argo.cpp:39
Non-graphical information for a Package.
Definition: package.h:33