| 33 | } |
| 34 | |
| 35 | fl::pair<fl::function<fl::optional<fl::json>()>, fl::function<void(const fl::json&)>> |
| 36 | getTransportCallbacks(TransportState*) FL_NOEXCEPT { |
| 37 | FL_ERROR("BLE not implemented on this platform"); |
| 38 | return { |
| 39 | fl::function<fl::optional<fl::json>()>([]() -> fl::optional<fl::json> { return fl::optional<fl::json>(); }), |
| 40 | fl::function<void(const fl::json&)>([](const fl::json&) {}) |
| 41 | }; |
| 42 | } |
| 43 | |
| 44 | } // namespace ble |
| 45 | } // namespace net |
no outgoing calls
no test coverage detected