summaryrefslogtreecommitdiffstats
path: root/vrplayer/dlgabout.h
blob: 4795e2fed8114c2c7d5e796dc19e2e989a4ab153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef DLGABOUT_H
#define DLGABOUT_H

#include <QDialog>

namespace Ui {
class DlgAbout;
}

class DlgAbout : public QDialog
{
    Q_OBJECT
    
public:
    explicit DlgAbout(QWidget *parent = 0);
    ~DlgAbout();
    
private:
    Ui::DlgAbout *ui;

private slots:
    void onOk();
};

#endif // DLGABOUT_H