| 44 | public: |
| 45 | void setDeviceToken(DeviceToken &dev) { m_token = &dev; } |
| 46 | util::GuardPtr getSendGuard() { |
| 47 | BOOST_ASSERT_MSG(m_token != nullptr, "Can't get a send guard " |
| 48 | "before we've been supplied " |
| 49 | "with a device token!"); |
| 50 | return m_token->getSendGuard(); |
| 51 | } |
| 52 | |
| 53 | private: |
| 54 | DeviceToken *m_token = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected