Encoder: Remove unused function

This is instead handled by an overloaded function in Communication
v0.3.0-dev
Paul Hollinsky 2021-09-21 00:23:32 -04:00
parent df9827fb2c
commit 6b37acf471
1 changed files with 0 additions and 3 deletions

View File

@ -19,9 +19,6 @@ class Encoder {
public:
Encoder(device_eventhandler_t report) : report(report) {}
bool encode(const Packetizer& packetizer, std::vector<uint8_t>& result, const std::shared_ptr<Message>& message);
bool encode(const Packetizer& packetizer, std::vector<uint8_t>& result, Command cmd, bool boolean) {
return encode(packetizer, result, cmd, std::vector<uint8_t>({ (uint8_t)boolean }));
}
bool encode(const Packetizer& packetizer, std::vector<uint8_t>& result, Command cmd, std::vector<uint8_t> arguments = {});
bool supportCANFD = false;