| 53 | } |
| 54 | |
| 55 | bool MacroConditionQueue::Load(obs_data_t *obj) |
| 56 | { |
| 57 | MacroCondition::Load(obj); |
| 58 | _condition = static_cast<Condition>(obs_data_get_int(obj, "condition")); |
| 59 | _queue = GetWeakActionQueueByName(obs_data_get_string(obj, "queue")); |
| 60 | _size.Load(obj, "size"); |
| 61 | return true; |
| 62 | } |
| 63 | |
| 64 | std::string MacroConditionQueue::GetShortDesc() const |
| 65 | { |
nothing calls this directly
no test coverage detected