PersonCount.h 327 B

12345678910111213141516171819202122
  1. #ifndef PERSONCOUNT_H
  2. #define PERSONCOUNT_H
  3. /* 区域人员检测(人员计数),检测这个区域内的人数,不能少于多少人,不能多余多少人 */
  4. class PersonCount
  5. {
  6. public:
  7. PersonCount();
  8. ~PersonCount();
  9. void task(); /* 任务线程 */
  10. private:
  11. };
  12. #endif /* PERSONCOUNT_H */