Changed file structure and removed useless output files.
[speedfreak] / Client / measuredialog.h
1 #ifndef MEASUREDIALOG_H
2 #define MEASUREDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class MeasureDialog;
8 }
9
10 class MeasureDialog : public QDialog {
11     Q_OBJECT
12 public:
13     MeasureDialog(QWidget *parent = 0);
14     ~MeasureDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18
19 private:
20     Ui::MeasureDialog *ui;
21 };
22
23 #endif // MEASUREDIALOG_H