17 lines
293 B
C++
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
|