| 12 | |
| 13 | |
| 14 | class ActivationTriggerList |
| 15 | { |
| 16 | public: |
| 17 | uint32_t profile_id; |
| 18 | std::vector<std::unique_ptr<ActivationTrigger>> triggers; |
| 19 | bool validate(bool claim_devices, bool full_poll, bool send_events); |
| 20 | int assignedDevices(); |
| 21 | private: |
| 22 | bool m_claimed = false; |
| 23 | }; |
| 24 | |
| 25 | class Profile |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected