blob: e00593702219e56df581ea9cac7054ff74c9fff8 [file] [log] [blame]
Patrick Ventureaf696252018-12-11 10:22:14 -08001#pragma once
2
Patrick Venture00887592018-12-11 10:57:06 -08003#include "blob_interface.hpp"
Patrick Ventureaf696252018-12-11 10:22:14 -08004#include "interface.hpp"
5
6class BtDataHandler : public DataInterface
7{
8 public:
Patrick Venture00887592018-12-11 10:57:06 -08009 explicit BtDataHandler(BlobInterface* blob) : blob(blob){};
Patrick Ventureaf696252018-12-11 10:22:14 -080010
11 bool sendContents(const std::string& input, std::uint16_t session) override;
Patrick Venture00887592018-12-11 10:57:06 -080012
13 private:
14 BlobInterface* blob;
Patrick Ventureaf696252018-12-11 10:22:14 -080015};