#ifndef MODULE_OTHER_ALARM_H #define MODULE_OTHER_ALARM_H #include "module_singleton_base.h" #include "card.h" class module_other_alarm:public singleton_base { private: friend class singleton_base; module_other_alarm() { } public: static void power_lower_serious(std::shared_ptr card_ptr); static void power_normal(std::shared_ptr card_ptr); }; #endif // MODULE_OTHER_ALARM_H