Patrick Venture | 7dc4670 | 2018-08-08 09:43:33 -0700 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include "interface.hpp" | ||||
4 | #include "updatehelper.hpp" | ||||
5 | |||||
6 | class 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 | }; |