summaryrefslogtreecommitdiffstats
path: root/src/realmconfigpage.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-05-31 15:04:42 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-05-31 15:04:42 -0500
commit15ed3f5aa021307cadfdd59bcf0a4f51008cb0ef (patch)
tree99af61c1b6966f116ff07164a3a005be241f9290 /src/realmconfigpage.h
parent9ce051cdff3caa7d3c584d3e2934258f5195014a (diff)
downloadkcmldapcontroller-15ed3f5aa021307cadfdd59bcf0a4f51008cb0ef.tar.gz
kcmldapcontroller-15ed3f5aa021307cadfdd59bcf0a4f51008cb0ef.zip
Add wizard skeleton for future development
Diffstat (limited to 'src/realmconfigpage.h')
-rw-r--r--src/realmconfigpage.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/realmconfigpage.h b/src/realmconfigpage.h
new file mode 100644
index 0000000..f4bbc9b
--- /dev/null
+++ b/src/realmconfigpage.h
@@ -0,0 +1,39 @@
+/***************************************************************************
+ * Copyright (C) 2012 by Timothy Pearson *
+ * kb9vqf@pearsoncomputing.net *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+
+#ifndef REALMCONFIGPAGE_H
+#define REALMCONFIGPAGE_H
+
+#include "realmconfigpagedlg.h"
+
+class TQStringList;
+
+/**Abstract class for the first wizard page. Sets the according selection on save()
+ *@author Timothy Pearson
+ */
+
+class RealmConfigPage : public RealmConfigPageDlg {
+ Q_OBJECT
+public:
+ RealmConfigPage(TQWidget *parent=0, const char *name=0);
+ ~RealmConfigPage();
+};
+
+#endif