24 lines
348 B
C++
24 lines
348 B
C++
#ifndef CARINTERFACE_CPP
|
|
#define CARINTERFACE_CPP
|
|
|
|
#include "CarInterface.h"
|
|
#include "LiveData.h"
|
|
|
|
void CarInterface::setLiveData(LiveData* pLiveData) {
|
|
this->liveData = pLiveData;
|
|
}
|
|
|
|
void CarInterface::activateCommandQueue() {
|
|
|
|
}
|
|
|
|
void CarInterface::parseRowMerged() {
|
|
|
|
}
|
|
|
|
void CarInterface::loadTestData() {
|
|
|
|
}
|
|
|
|
#endif // CARINTERFACE_CPP
|