1
0

module_other_alarm.h 558 B

123456789101112131415161718192021222324252627
  1. #ifndef MODULE_OTHER_ALARM_H
  2. #define MODULE_OTHER_ALARM_H
  3. /**
  4. * @brief 简要说明
  5. * @author 戴月腾
  6. * @date 2018-10-11
  7. */
  8. #include "module_singleton_base.h"
  9. #include "card.h"
  10. class module_other_alarm:public singleton_base<module_other_alarm>
  11. {
  12. private:
  13. friend class singleton_base<module_other_alarm>;
  14. module_other_alarm()
  15. {
  16. }
  17. public:
  18. static void power_lower_serious(std::shared_ptr<card_location_base> card_ptr);
  19. static void power_nomarl(std::shared_ptr<card_location_base> card_ptr);
  20. };
  21. #endif // MODULE_OTHER_ALARM_H