SubNet.h
资源名称:NetFinder.rar [点击查看]
上传用户:qiye66692
上传日期:2022-04-25
资源大小:72k
文件大小:0k
源码类别:
SNMP编程
开发平台:
Visual C++
- #pragma once
- #include "afx.h"
- #ifndef SUBNET_H
- #define SUBNET_H
- class CSubNet :
- public CObject
- {
- public:
- CSubNet(CString ip, CString mask);
- ~CSubNet(void);
- CString IP;
- CString Mask;
- CStringArray Routers;
- CStringArray Hosts;
- };
- #endif