Host.h
上传用户:qiye66692
上传日期:2022-04-25
资源大小:72k
文件大小:0k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. #pragma once
  2. #include "afx.h"
  3. #ifndef HOST_H
  4. #define HOST_H
  5. class CHost :
  6. public CObject
  7. {
  8. public:
  9. CHost(void);
  10. ~CHost(void);
  11. CString m_strHostIp;
  12. CString m_strHostName;
  13. CString m_strHostDescr;
  14. CString m_strHostUpTime;
  15. };
  16. #endif