PeugeotDoc.h
上传用户:asikq0571
上传日期:2014-07-12
资源大小:528k
文件大小:3k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. // PeugeotDoc.h : interface of the CPeugeotDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PEUGEOTDOC_H__3BAB3CF0_D550_4588_BAC1_0D00B234F5E4__INCLUDED_)
  5. #define AFX_PEUGEOTDOC_H__3BAB3CF0_D550_4588_BAC1_0D00B234F5E4__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. ///////////////////////
  10. #include ".CMMComControl.h"
  11. #include ".CMMDASocket.h"
  12. #include "PrtIEC101.h"
  13. #include "PrtModbus.h"
  14. ///////////////////////
  15. class CPeugeotDoc : public CDocument
  16. {
  17. protected: // create from serialization only
  18. CPeugeotDoc();
  19. DECLARE_DYNCREATE(CPeugeotDoc)
  20. // Attributes
  21. public:
  22. enum CmmPortType 
  23. {CommPort,NetPort} m_CmmPortType;      //通讯端口类型
  24. enum PrtType 
  25. {IEC101_M,IEC101_S,Modbus_M,Modbus_S,Blank} m_PrtType;  //通讯规约类型,分别无协议;IEC101主站、子站;MODBUS主站、子站
  26. struct NetParam     //网络口参数
  27. {
  28. enum PrtType {TCPServer,TCPClient,UDP} 
  29.           TCPPrtType;
  30. CString   LocalIPAddr;
  31. UINT      LocalIPPort;
  32. CString   RemoteIPAddr;
  33. UINT      RemoteIPPort;
  34. } m_NetParam;
  35.    
  36. ////////通讯口对象/////////
  37. CComControl m_ComObj;
  38. CDAServerSocket* m_pSrvSocketObj;   //服务器
  39. CDAClientSocket* m_pCltSocketObj;   //客户端
  40. CDAUDPSocket* m_pUDPSocketObj;   //UDP
  41.     //////////////////////////
  42. CPrtIEC101 m_PrtIEC101;
  43. CPrtModbus m_PrtModbus;
  44. bool m_MasterFlag;    //如果是主站类型,通讯连接后启动召唤时钟
  45.     int m_YXAddr,m_YCAddr,m_YMAddr;
  46. int m_YXNum,m_YCNum,m_YMNum;
  47. BYTE* m_pYXData;       //实时数据指针 
  48. int*  m_pYCData;
  49. DWORD*  m_pYMData;     
  50. // Operations
  51. public:
  52. // Overrides
  53. // ClassWizard generated virtual function overrides
  54. //{{AFX_VIRTUAL(CPeugeotDoc)
  55. public:
  56. virtual BOOL OnNewDocument();
  57. virtual void Serialize(CArchive& ar);
  58. //}}AFX_VIRTUAL
  59. // Implementation
  60. public:
  61. void NewStackAddr();
  62. virtual ~CPeugeotDoc();
  63. #ifdef _DEBUG
  64. virtual void AssertValid() const;
  65. virtual void Dump(CDumpContext& dc) const;
  66. #endif
  67. protected:
  68. // Generated message map functions
  69. protected:
  70. //{{AFX_MSG(CPeugeotDoc)
  71. // NOTE - the ClassWizard will add and remove member functions here.
  72. //    DO NOT EDIT what you see in these blocks of generated code !
  73. //}}AFX_MSG
  74. DECLARE_MESSAGE_MAP()
  75. };
  76. /////////////////////////////////////////////////////////////////////////////
  77. //{{AFX_INSERT_LOCATION}}
  78. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  79. #endif // !defined(AFX_PEUGEOTDOC_H__3BAB3CF0_D550_4588_BAC1_0D00B234F5E4__INCLUDED_)