17 lines
287 B
C++
17 lines
287 B
C++
#ifndef CARKIAENIRO_H
|
|
#define CARKIAENIRO_H
|
|
|
|
#include "CarInterface.h"
|
|
|
|
class CarKiaEniro : public CarInterface {
|
|
|
|
protected:
|
|
|
|
public:
|
|
void activateCommandQueue() override;
|
|
void parseRowMerged() override;
|
|
void loadTestData() override;
|
|
};
|
|
|
|
#endif // CARKIAENIRO_H
|