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

SNMP编程

开发平台:

Visual C++

  1. #pragma once
  2. #include "afx.h"
  3. #ifndef SUBNET_H
  4. #define SUBNET_H
  5. class CSubNet :
  6. public CObject
  7. {
  8. public:
  9. CSubNet(CString ip, CString mask);
  10. ~CSubNet(void);
  11. CString IP;
  12. CString Mask;
  13. CStringArray Routers;
  14. CStringArray Hosts;
  15. };
  16. #endif