Host.h
资源名称:NetFinder.rar [点击查看]
上传用户:qiye66692
上传日期:2022-04-25
资源大小:72k
文件大小:0k
源码类别:
SNMP编程
开发平台:
Visual C++
- #pragma once
- #include "afx.h"
- #ifndef HOST_H
- #define HOST_H
- class CHost :
- public CObject
- {
- public:
- CHost(void);
- ~CHost(void);
- CString m_strHostIp;
- CString m_strHostName;
- CString m_strHostDescr;
- CString m_strHostUpTime;
- };
- #endif