CPLNetwork.hpp 2.0 KB

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