| 9 | namespace advss { |
| 10 | |
| 11 | static inline bool SceneGroupValid(SceneGroup *group) |
| 12 | { |
| 13 | if (group) { |
| 14 | return group->name != invalid_scene_group_name; |
| 15 | } |
| 16 | return false; |
| 17 | } |
| 18 | |
| 19 | bool SceneSwitcherEntry::initialized() |
| 20 | { |
no outgoing calls
no test coverage detected