#ifndef _jumpH5_H #define _jumpH5_H #include "pub.h" class jumpH5 { public: void Process(int* right_pos, int* right_att, int right_zupt, int* left_pos, int* left_att, int left_zupt, int jump, int down, int girl_shoes); void getResult(int* result); private: int last_right_pos[3]; int last_left_pos[3]; int last_right_zupt; int last_left_zupt; int left_wait_time = 0; int right_wait_time = 0; int left_pos_wait[3]; int right_pos_wait[3]; int report_tag = 0; int next_result_wait = 0; int not_on_floor_time = 0; int H5_result[4] = { 0,0,0,0 }; }; #endif