Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
612 B

  1. // NicIterator.h: interface for the CNicIterator class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_NICITERATOR_H__D77EC672_6E63_4EB4_9AEC_4F1585532CC3__INCLUDED_)
  5. #define AFX_NICITERATOR_H__D77EC672_6E63_4EB4_9AEC_4F1585532CC3__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CNicIterator
  10. {
  11. public:
  12. CNicIterator();
  13. virtual ~CNicIterator();
  14. private:
  15. void LoadNicInfo();
  16. vector<CNicInfo> m_vNicCards;
  17. };
  18. #endif // !defined(AFX_NICITERATOR_H__D77EC672_6E63_4EB4_9AEC_4F1585532CC3__INCLUDED_)