ointerfaces.hpp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ointerfaces.hpp - interface for the ointerfaces class
  11. *
  12. * host interface enumerator;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef oINTERFACES_HEADER
  19. #define oINTERFACES_HEADER
  20. /*====================================================================*
  21. * custom header files;
  22. *--------------------------------------------------------------------*/
  23. #include "../classes/stdafx.hpp"
  24. #include "../classes/ointerface.hpp"
  25. /*====================================================================*
  26. * class constants;
  27. *--------------------------------------------------------------------*/
  28. #define oINTERFACES_FILTER 1
  29. /*====================================================================*
  30. * class declaration;
  31. *--------------------------------------------------------------------*/
  32. class __declspec (dllexport) ointerfaces
  33. {
  34. public:
  35. ointerfaces ();
  36. virtual ~ ointerfaces ();
  37. bool Empty (void) const;
  38. bool End (void) const;
  39. unsigned Count (void) const;
  40. unsigned Index (void) const;
  41. ointerfaces & Select (unsigned);
  42. ointerfaces & SelectPrev ();
  43. ointerfaces & SelectNext ();
  44. ointerfaces & SelectFirst ();
  45. ointerfaces & SelectFinal ();
  46. ointerfaces & Enumerate (void);
  47. ointerfaces & operator = (unsigned);
  48. ointerface & Selected () const;
  49. ointerface & Interface () const;
  50. ointerface & operator [] (unsigned);
  51. private:
  52. ointerface ** mtable;
  53. unsigned mcount;
  54. unsigned mindex;
  55. };
  56. /*====================================================================*
  57. * end declaration;
  58. *--------------------------------------------------------------------*/
  59. #endif