Counter.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //-----------------------------------------------------------------------------
  2. // (c) 2006 by Basler Vision Technologies
  3. // Section: Vision Components
  4. // Project: GenApi
  5. // Author: Alexander Happe
  6. // $Header$
  7. //
  8. // License: This file is published under the license of the EMVA GenICam Standard Group.
  9. // A text file describing the legal terms is included in your installation as 'GenICam_license.pdf'.
  10. // If for some reason you are missing this file please contact the EMVA or visit the website
  11. // (http://www.genicam.org) for a full copy.
  12. //
  13. // THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM STANDARD GROUP "AS IS"
  14. // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM STANDARD GROUP
  17. // OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18. // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19. // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  20. // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  21. // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  23. // POSSIBILITY OF SUCH DAMAGE.
  24. //-----------------------------------------------------------------------------
  25. /*!
  26. \file
  27. \brief Definition of a simple Counter class
  28. \ingroup GenApi_PublicImpl
  29. */
  30. #ifndef GENAPI_COUNTER_H
  31. #define GENAPI_COUNTER_H
  32. namespace GENAPI_NAMESPACE {
  33. class Counter
  34. {
  35. public:
  36. Counter() : m_value(0)
  37. {
  38. }
  39. unsigned int GetValue() const
  40. { return m_value; }
  41. unsigned int operator++() // prefix
  42. {
  43. return ++m_value;
  44. }
  45. unsigned int operator++(int) // postfix
  46. {
  47. return m_value++;
  48. }
  49. unsigned int operator--(int) // postfix
  50. {
  51. assert( m_value > 0);
  52. return m_value--;
  53. }
  54. unsigned int operator--() // prefix
  55. {
  56. assert( m_value > 0);
  57. return --m_value;
  58. }
  59. operator unsigned int()
  60. {
  61. return m_value;
  62. }
  63. bool IsZero()
  64. {
  65. return m_value == 0;
  66. }
  67. private:
  68. unsigned int m_value;
  69. };
  70. }
  71. #endif // GENAPI_COUNTER_H