#ifndef EMGAUWA_CORE_JUNCTION_RELAY_SCHEDULE_DBO_H #define EMGAUWA_CORE_JUNCTION_RELAY_SCHEDULE_DBO_H #include #include #include #include #include namespace junction_relay_schedule_dbo { int get_schedule_id(uint8_t weekday, int relay_id); bool insert(uint8_t weekday, int relay_id, int schedule_id); bool remove(uint8_t weekday, int relay_id, int schedule_id); bool remove_for_relay(int relay_id); bool remove_for_schedule(int schedule_id); }; #endif //EMGAUWA_CORE_JUNCTION_RELAY_SCHEDULE_DBO_H