summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/dialogs/codegenerationpolicypage.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/dialogs/codegenerationpolicypage.h')
-rw-r--r--umbrello/umbrello/dialogs/codegenerationpolicypage.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/umbrello/umbrello/dialogs/codegenerationpolicypage.h b/umbrello/umbrello/dialogs/codegenerationpolicypage.h
new file mode 100644
index 00000000..16590dd3
--- /dev/null
+++ b/umbrello/umbrello/dialogs/codegenerationpolicypage.h
@@ -0,0 +1,55 @@
+/***************************************************************************
+ codegenerationpolicypage.h - description
+ -------------------
+ begin : Tue Jul 29 2003
+ copyright : (C) 2003 by Brian Thomas
+ email : brian.thomas@gsfc.nasa.gov
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * copyright (C) 2004-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+#ifndef CODEGENERATIONPOLICYPAGE_H
+#define CODEGENERATIONPOLICYPAGE_H
+
+#include <qwidget.h>
+#include "codegenerationpolicybase.h"
+
+class CodeGenPolicyExt;
+
+/**
+ * @author Brian Thomas
+ */
+
+class CodeGenerationPolicyPage : public CodeGenerationPolicyBase {
+ Q_OBJECT
+public:
+ explicit CodeGenerationPolicyPage (QWidget *parent=0, const char *name=0, CodeGenPolicyExt * policy = 0);
+
+ virtual ~CodeGenerationPolicyPage();
+
+ void setDefaults();
+
+protected:
+
+ CodeGenPolicyExt * m_parentPolicy;
+
+private:
+
+public slots:
+
+ virtual void apply();
+
+
+};
+
+#endif
+