#ifndef PERSONCOUNT_H #define PERSONCOUNT_H /* 区域人员检测(人员计数),检测这个区域内的人数,不能少于多少人,不能多余多少人 */ class PersonCount { public: PersonCount(); ~PersonCount(); void task(); /* 任务线程 */ private: }; #endif /* PERSONCOUNT_H */