| Patrick Venture | af69625 | 2018-12-11 10:22:14 -0800 | [diff] [blame^] | 1 | #pragma once |
| 2 | |||||
| 3 | #include "interface.hpp" | ||||
| 4 | |||||
| 5 | class BtDataHandler : public DataInterface | ||||
| 6 | { | ||||
| 7 | public: | ||||
| 8 | BtDataHandler() = default; | ||||
| 9 | |||||
| 10 | bool sendContents(const std::string& input, std::uint16_t session) override; | ||||
| 11 | }; | ||||