umbrello  2.32.1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
dcodegenerationpolicypage.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 Jari-Matti Mäkelä <jmjm@iki.fi> *
8  * copyright (C) 2008-2020 *
9  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
10  ***************************************************************************/
11 
12 #ifndef DCODEGENERATIONPOLICYPAGE_H
13 #define DCODEGENERATIONPOLICYPAGE_H
14 
16 #include "dcodegenerationpolicy.h"
17 #include "ui_dcodegenerationformbase.h"
18 
23 class DCodeGenerationFormBase : public QWidget, public Ui::DCodeGenerationFormBase
24 {
25 public:
26  explicit DCodeGenerationFormBase(QWidget *parent) : QWidget(parent)
27  {
28  setupUi(this);
29  }
30 };
31 
32 
34 {
35  Q_OBJECT
36 public:
37 
38  explicit DCodeGenerationPolicyPage(QWidget *parent=0, const char *name=0, DCodeGenerationPolicy * policy = 0);
40 
41 protected:
42 
44 
45 public slots:
46 
47  void apply();
48 
49 };
50 
51 #endif
52 
Definition: codegenerationpolicypage.h:31
Definition: dcodegenerationpolicypage.h:24
DCodeGenerationFormBase(QWidget *parent)
Definition: dcodegenerationpolicypage.h:26
Definition: dcodegenerationpolicypage.h:34
virtual ~DCodeGenerationPolicyPage()
Definition: dcodegenerationpolicypage.cpp:42
DCodeGenerationFormBase * form
Definition: dcodegenerationpolicypage.h:43
void apply()
Definition: dcodegenerationpolicypage.cpp:46
DCodeGenerationPolicyPage(QWidget *parent=0, const char *name=0, DCodeGenerationPolicy *policy=0)
Definition: dcodegenerationpolicypage.cpp:21
Definition: dcodegenerationpolicy.h:23