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
32
33
34
35
36
37
38
39
40
41
42
43
/**  @file addnode.h
 *   @note HangZhou Hikvision System Technology Co., Ltd. All Right Reserved. 
 *   @brief 
 *   
 *   @author wanggongpu
 *   @modify by panyadong
 *   @date 2012-5-22
 *   
 *   @note:
 */
#ifndef ADDNODE_H
#define ADDNODE_H
 
#include <QtGui/QDialog>
#include "ui_addnode.h"
 
#include "DemoPublic.h"
#include "devicedata.h"
 
class AddNode : public QDialog
{
    Q_OBJECT
 
public:
    friend class QtClientDemo;
 
    AddNode(QWidget *parent = 0);
    ~AddNode();
 
private slots:
    void on_cancel_pushButton_clicked();
    void on_m_pBtnGetDeviceIP_clicked();
    void CheckUserIPServer();
        
private:
    Ui::AddNodeClass ui;
    int m_iuserid;
    NET_DVR_DEVICEINFO_V30 m_deviceinfo;
    NET_DVR_IPPARACFG m_ipparacfg;
};
 
#endif // ADDNODE_H