Files
evDash/CarInterface.cpp
Lubos Petrovic f3d64e938d Refactoring
2020-11-30 23:41:12 +01:00

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