#ifndef EMGAUWA_CORE_RELAY_DBO_H #define EMGAUWA_CORE_RELAY_DBO_H #include #include #include class relay_dbo { public: int id; char name[128]; int number; char device_id[33]; char active_schedule_id[33]; bool update(); bool insert(); bool remove(); Json::Value to_json(); static void free_list(relay_dbo **relays_list); static relay_dbo** get_by_simple(const char *key, const void *value, intptr_t bind_func); static relay_dbo** get_all(); }; #endif //EMGAUWA_CORE_RELAY_DBO_H