Files
evDash/CarRenaultZoe.h
2020-12-02 13:23:59 +01:00

17 lines
293 B
C++

#ifndef CARRENAULTZOE_H
#define CARRENAULTZOE_H
#include "CarInterface.h"
class CarRenaultZoe : public CarInterface {
private:
public:
void activateCommandQueue() override;
void parseRowMerged() override;
void loadTestData() override;
};
#endif // CARRENAULTZOE_H