umbrello  2.32.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
codegenpolicyext.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 CODEGENPOLICYEXT_H
12 #define CODEGENPOLICYEXT_H
13 
14 #include <QObject>
15 
16 class QWidget;
18 
27 class CodeGenPolicyExt : public QObject
28 {
29  Q_OBJECT
30 public:
32  virtual ~CodeGenPolicyExt() {}
33 
34  virtual CodeGenerationPolicyPage * createPage(QWidget *parent = 0, const char *name = 0) = 0;
35 
36  virtual void setDefaults(bool emitUpdateSignal = true) = 0;
37 
38 };
39 
40 #endif
Definition: codegenpolicyext.h:28
virtual void setDefaults(bool emitUpdateSignal=true)=0
virtual CodeGenerationPolicyPage * createPage(QWidget *parent=0, const char *name=0)=0
CodeGenPolicyExt()
Definition: codegenpolicyext.h:31
virtual ~CodeGenPolicyExt()
Definition: codegenpolicyext.h:32
Definition: codegenerationpolicypage.h:31