umbrello  2.31.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
docbookgeneratorjob.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) 2007-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef DOCBOOKGENERATORJOB_H
12 #define DOCBOOKGENERATORJOB_H
13 
14 #include <QThread>
15 
25 class DocbookGeneratorJob : public QThread
26 {
27  Q_OBJECT
28 
29  public:
30  explicit DocbookGeneratorJob(QObject* parent);
31 
32  protected:
33  void run();
34 
35  signals:
36  void docbookGenerated(const QString& url);
37 
38 };
39 
40 #endif
DocbookGeneratorJob(QObject *parent)
Definition: docbookgeneratorjob.cpp:128
Generates DocBook from the Document.
Definition: docbookgeneratorjob.h:25
void docbookGenerated(const QString &url)
Definition: moc_docbookgeneratorjob.cpp:130
void run()
Definition: docbookgeneratorjob.cpp:133