]> git.sesse.net Git - nageru/blob - mainwindow.h
Hook up the cut button to something that is not really cut, but is more useful than...
[nageru] / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QMainWindow>
5
6 class MainWindow : public QMainWindow
7 {
8         Q_OBJECT
9
10 public:
11         MainWindow();
12
13 public slots:
14         void cut();
15 };
16
17 #endif