blob: a8879d48c858e7cde8558431335268f92b90edb0 [file] [log] [blame]
Patrick Venture7dc46702018-08-08 09:43:33 -07001#pragma once
2
3#include "interface.hpp"
4#include "updatehelper.hpp"
5
6class BtDataHandler : public DataInterface
7{
8 public:
9 explicit BtDataHandler(UpdateHelperInterface* helper) : helper(helper)
10 {
11 }
12
13 void SendData(std::ifstream input, int command) override;
14
15 bool External() override
16 {
17 return false;
18 }
19
20 private:
21 UpdateHelperInterface* helper;
22};