Added Kia Niro PHEV 8.9

This commit is contained in:
Lubos Petrovic
2020-12-10 13:20:16 +01:00
parent 4170defbda
commit 4cc0365c7f
9 changed files with 408 additions and 3 deletions

16
CarKiaNiroPhev.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef CARKIANIROPHEV_H
#define CARKIANIROPHEV_H
#include "CarInterface.h"
class CarKiaNiroPhev: public CarInterface {
protected:
public:
void activateCommandQueue() override;
void parseRowMerged() override;
void loadTestData() override;
};
#endif