Added new classes and menu item for BMW i3

This commit is contained in:
Jan Matik
2020-12-20 12:44:20 +01:00
parent 4532105adb
commit b7c93fe472
5 changed files with 124 additions and 2 deletions

13
CarBmwI3.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "CarInterface.h"
class CarBmwI3 : public CarInterface {
protected:
public:
void activateCommandQueue() override;
void parseRowMerged() override;
void loadTestData() override;
};