blob: a8879d48c858e7cde8558431335268f92b90edb0 [file] [log] [blame]
#pragma once
#include "interface.hpp"
#include "updatehelper.hpp"
class BtDataHandler : public DataInterface
{
public:
explicit BtDataHandler(UpdateHelperInterface* helper) : helper(helper)
{
}
void SendData(std::ifstream input, int command) override;
bool External() override
{
return false;
}
private:
UpdateHelperInterface* helper;
};