ConfigNetwork.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
源码类别:

网格计算

开发平台:

Visual C++

  1. // ConfigNetwork.h : header file
  2. #ifndef _CONFIG_NETWORK_H
  3. #define _CONFIG_NETWORK_H
  4. class CConfigNetwork : public CPropertyPage
  5. {
  6. DECLARE_DYNCREATE(CConfigNetwork)
  7. // Construction
  8. public:
  9. CConfigNetwork();
  10. ~CConfigNetwork();
  11. BOOL Refresh();
  12. // Dialog Data
  13. //{{AFX_DATA(CConfigNetwork)
  14. enum { IDD = IDD_NETWORK_CONFIG };
  15. CIPAddressCtrl m_oSvrIpAddr;
  16. BOOL m_bAutoRecvSvrsFles;
  17. BOOL m_bAutoUpdate;
  18. int m_nDirSvrPort;
  19. int m_nRelayPort;
  20. int m_nTransPort;
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generate virtual function overrides
  24. //{{AFX_VIRTUAL(CConfigNetwork)
  25. public:
  26. virtual BOOL OnSetActive();
  27. virtual void OnOK();
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. // Generated message map functions
  34. //{{AFX_MSG(CConfigNetwork)
  35. virtual BOOL OnInitDialog();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. #endif //_CONFIG_NETWORK_H