summaryrefslogtreecommitdiff
path: root/src/gui/notepad.hpp
diff options
context:
space:
mode:
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_ */
+