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