ddt  0.1
ddtDialogFactory.hpp
Go to the documentation of this file.
1 // @copyright
2 // (c) Copyright ESO 2020
3 // All Rights Reserved
4 // ESO (eso.org) is an Intergovernmental Organization, and therefore special
5 // legal conditions apply.
6 //
7 // @file ddtDialogFactory.hpp
8 // @brief DDT Dialogs. Factory class for the DDT dialogs
9 //
10 // Factory class for the DDT dialogs
11 //
12 // @author Carsten Mannel, CGI
13 // @since 2020/10/14
14 //
15 
16 #ifndef DDT_DATAVISUALISATION_DDTDIALOGS_DIALOGFACTORY_HPP
17 #define DDT_DATAVISUALISATION_DDTDIALOGS_DIALOGFACTORY_HPP
18 
19 #include <QtWidgets>
20 
22 
26 class DdtDialogFactory : public QObject {
27  public:
33  static DdtDialog* createDialog(QString dialog_id);
34 };
35 
36 #endif // DDT_DATAVISUALISATION_DDTDIALOGS_DIALOGFACTORY_HPP
ddtDialog.hpp
DdtDialogFactory
Definition: ddtDialogFactory.hpp:26
DdtDialogFactory::createDialog
static DdtDialog * createDialog(QString dialog_id)
Definition: ddtDialogFactory.cpp:25
DdtDialog
Definition: ddtDialog.hpp:24