Files
evDash/CarInterface.cpp
Lubos Petrovic e2100ad6bf removed this->
2020-12-03 11:24:58 +01:00

24 lines
342 B
C++

#ifndef CARINTERFACE_CPP
#define CARINTERFACE_CPP
#include "CarInterface.h"
#include "LiveData.h"
void CarInterface::setLiveData(LiveData* pLiveData) {
liveData = pLiveData;
}
void CarInterface::activateCommandQueue() {
}
void CarInterface::parseRowMerged() {
}
void CarInterface::loadTestData() {
}
#endif // CARINTERFACE_CPP