pans
2016-12-15 87e3ee273b2f84081ac45926be9d8e5be3166eaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef CPPPCFGDLG_H
#define CPPPCFGDLG_H
 
#include <QtGui/QDialog>
#include <QCheckBox>
#include <QLineEdit>
#include "DemoPublic.h"
 
namespace Ui {
    class CPPPCfgDlg;
}
 
class CPPPCfgDlg : public QDialog {
    Q_OBJECT
public:
    CPPPCfgDlg(QWidget *parent = 0);
    ~CPPPCfgDlg();
    NET_DVR_PPPCFG_V30 *m_pStruPPPInfo;
 
protected:
    void changeEvent(QEvent *e);
    void showEvent ( QShowEvent * event);
 
public slots:
    void btnSave();
    void btncancel();
private:
    Ui::CPPPCfgDlg *m_ui;
};
 
#endif // CPPPCFGDLG_H