summaryrefslogtreecommitdiffstats
path: root/sigbattle/SigbattlePreferencesWidget.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-20 23:03:22 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-03-20 23:03:22 -0400
commit2b3cdfa06f1203de402d72056a201e441e1a7bfa (patch)
tree1e2b02d5578bbb793eb1dc7552ae9d693a1e7c66 /sigbattle/SigbattlePreferencesWidget.h
parent35601fdeaff3065d7009d80f17fd61a74151ac32 (diff)
downloadsigen-2b3cdfa06f1203de402d72056a201e441e1a7bfa.tar.gz
sigen-2b3cdfa06f1203de402d72056a201e441e1a7bfa.tar.xz
sigen-2b3cdfa06f1203de402d72056a201e441e1a7bfa.zip
Add skeleton for Sigbattle application
Diffstat (limited to 'sigbattle/SigbattlePreferencesWidget.h')
-rw-r--r--sigbattle/SigbattlePreferencesWidget.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/sigbattle/SigbattlePreferencesWidget.h b/sigbattle/SigbattlePreferencesWidget.h
new file mode 100644
index 00000000..327feec1
--- /dev/null
+++ b/sigbattle/SigbattlePreferencesWidget.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef SIGBATTLE_SIGBATTLEPREFERENCESWIDGET
+#define SIGBATTLE_SIGBATTLEPREFERENCESWIDGET
+
+// Qt includes
+#include <QtGui/QWidget>
+
+namespace Sigbattle
+{
+class SigbattlePreferencesWidget : public QWidget
+{
+ Q_OBJECT
+
+ public:
+ SigbattlePreferencesWidget(QWidget* parent = NULL);
+ protected slots:
+ void save();
+ private:
+};
+}
+
+#endif