MotionCount.h 232 B

123456789101112131415161718
  1. #include "pub.h"
  2. #define MOTION_COUNT_SIZE 20
  3. class MotionCount {
  4. public:
  5. MotionCount();
  6. void addMotionCount(int motion_type);
  7. int getMotionCount(int motion_type);
  8. private:
  9. int motionCount_matrix[MOTION_COUNT_SIZE];
  10. };