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