Olive
demonotice.h
1 #ifndef DEMONOTICE_H
2 #define DEMONOTICE_H
3 
4 #include <QDialog>
5 
6 class DemoNotice : public QDialog
7 {
8  Q_OBJECT
9 public:
10  explicit DemoNotice(QWidget *parent = 0);
11 };
12 
13 #endif // DEMONOTICE_H
Definition: demonotice.h:6