mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
21 lines
369 B
C++
21 lines
369 B
C++
#ifndef _EULA_DIALOG_H_
|
|
#define _EULA_DIALOG_H_
|
|
|
|
#include "..\Qt\Qt.h"
|
|
|
|
//------------------------------------------------------------------------------
|
|
class EulaDialog_C : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
EulaDialog_C();
|
|
|
|
private:
|
|
QGridLayout* pGridLayout;
|
|
QTextEdit* pTextEdit;
|
|
QPushButton* pAccept;
|
|
QPushButton* pDecline;
|
|
};
|
|
|
|
#endif// _EULA_DIALOG_H_
|