Initial import.
[dorian] / devtools.h
1 #ifndef DEVTOOLS_H
2 #define DEVTOOLS_H
3
4 #include <QtGui>
5
6 class DevTools: public QDialog
7 {
8     Q_OBJECT
9
10 public:
11     explicit DevTools(QWidget *parent = 0);
12
13 public slots:
14     void onClear();
15 };
16
17 #endif // DEVTOOLS_H