blob: de35c1b3e390924da4485622ee1213b0f63db6dd [file] [log] [blame]
Patrick Ventureaf696252018-12-11 10:22:14 -08001#pragma once
2
3#include "interface.hpp"
4
5class LpcDataHandler : public DataInterface
6{
7 public:
8 LpcDataHandler() = default;
9
10 bool sendContents(const std::string& input, std::uint16_t session) override;
11};