xrdp/vrplayer/dlgabout.h

27 lines
370 B
C
Raw Permalink Normal View History

2013-07-20 10:45:13 +04:00
#ifndef DLGABOUT_H
#define DLGABOUT_H
#include <QDialog>
2021-05-08 19:58:11 +03:00
namespace Ui
{
class DlgAbout;
2013-07-20 10:45:13 +04:00
}
class DlgAbout : public QDialog
{
2021-05-08 19:58:11 +03:00
Q_OBJECT
public:
explicit DlgAbout(QWidget *parent = 0);
~DlgAbout();
private:
Ui::DlgAbout *ui;
2013-07-20 10:45:13 +04:00
private slots: // cppcheck-suppress unknownMacro
2021-05-08 19:58:11 +03:00
void onOk();
2013-07-20 10:45:13 +04:00
};
#endif // DLGABOUT_H