summaryrefslogtreecommitdiff
path: root/src/gui/notepad.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2014-03-04 12:59:32 +0000
committerandreas <andreas@daaaf23c-2e50-4459-9457-1e69db5a47bf>2014-03-04 12:59:32 +0000
commitc543117ff43c63a053ea786ed606398ac4687494 (patch)
treebf13926dff41782831fbf5fc37c274f09f7a0360 /src/gui/notepad.hpp
added source code
git-svn-id: file:///var/local/svn/basicwriter@12 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'src/gui/notepad.hpp')
-rw-r--r--src/gui/notepad.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gui/notepad.hpp b/src/gui/notepad.hpp
new file mode 100644
index 0000000..d5c713c
--- /dev/null
+++ b/src/gui/notepad.hpp
@@ -0,0 +1,17 @@
+#ifndef _NOTEPAD_H_
+#define _NOTEPAD_H_
+
+#include <QMainWindow>
+
+class Notepad : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ explicit Notepad(QWidget *parent = 0);
+ ~Notepad();
+
+};
+
+#endif /* _NOTEPAD_H_ */
+