28 lines
408 B
C++
28 lines
408 B
C++
#ifndef GENERALSTATUSPAGE_H
|
|
#define GENERALSTATUSPAGE_H
|
|
|
|
#include <QWidget>
|
|
#include "defines.h"
|
|
|
|
|
|
namespace Ui {
|
|
class CGeneralStatusPage;
|
|
}
|
|
|
|
class CGeneralStatusPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CGeneralStatusPage(QWidget *parent = 0);
|
|
~CGeneralStatusPage();
|
|
|
|
int SetGeneralMsgText(QString Txt);
|
|
|
|
|
|
private:
|
|
Ui::CGeneralStatusPage *ui;
|
|
};
|
|
|
|
#endif // GENERALSTATUSPAGE_H
|