14 lines
200 B
C++
14 lines
200 B
C++
#ifndef DEMONOTICE_H
|
|
#define DEMONOTICE_H
|
|
|
|
#include <QDialog>
|
|
|
|
class DemoNotice : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DemoNotice(QWidget *parent = 0);
|
|
};
|
|
|
|
#endif // DEMONOTICE_H
|