Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #pragma once
  2.  
  3. #define maxDigits 10
  4. #define maxValue 8
  5.  
  6. class Counter
  7. {
  8. public:
  9. Counter();
  10. ~Counter();
  11. bool Increment();
  12. private:
  13. unsigned char mData[maxDigits];
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement