You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
456 B
C
30 lines
456 B
C
4 hours ago
|
#ifndef NMWXRCDIALOG_H
|
||
|
#define NMWXRCDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QObject>
|
||
|
#include "nmSubWxs_global.h"
|
||
|
|
||
|
class QTableWidget;
|
||
|
|
||
|
// 鍌ㄥ眰鐗规€
|
||
|
class NM_SUB_WXS_EXPORT nmWxRCDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
nmWxRCDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_save();
|
||
|
|
||
|
private:
|
||
|
void initUI();
|
||
|
QWidget* initOilReservoirUI();
|
||
|
QWidget* initWellsUI();
|
||
|
|
||
|
private:
|
||
|
QTableWidget* m_pTableWidget;
|
||
|
};
|
||
|
|
||
|
#endif // NMWXRCDIALOG_H
|