24 lines
437 B
C++
24 lines
437 B
C++
#ifndef CDISPOSALPLANDIALOG_H
|
|
#define CDISPOSALPLANDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "CAlarmCommon.h"
|
|
namespace Ui {
|
|
class CDisposalPlanDialog;
|
|
}
|
|
|
|
class CDisposalPlanDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CDisposalPlanDialog(const AiAlarmMsgPtr &aiptr,QWidget *parent = 0);
|
|
~CDisposalPlanDialog();
|
|
|
|
private:
|
|
Ui::CDisposalPlanDialog *ui;
|
|
AiAlarmMsgPtr m_aiptr;
|
|
};
|
|
|
|
#endif // CDISPOSALPLANDIALOG_H
|