| 41 | } |
| 42 | |
| 43 | profile* ConfigHandler::FindCreateProfile(unsigned id) { |
| 44 | profile* prof = FindProfile(id); |
| 45 | if (!prof) { |
| 46 | prof = new profile{ id, "New Profile"}; |
| 47 | profiles.push_back(prof); |
| 48 | } |
| 49 | return prof; |
| 50 | } |
| 51 | |
| 52 | AlienFX_SDK::Afx_group* ConfigHandler::FindCreateGroup(int groupID) { |
| 53 | AlienFX_SDK::Afx_group* grp = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected