19 lines
263 B
C++
19 lines
263 B
C++
#include "CarInterface.h"
|
|
#include "LiveData.h"
|
|
|
|
void CarInterface::setLiveData(LiveData* pLiveData) {
|
|
liveData = pLiveData;
|
|
}
|
|
|
|
void CarInterface::activateCommandQueue() {
|
|
|
|
}
|
|
|
|
void CarInterface::parseRowMerged() {
|
|
|
|
}
|
|
|
|
void CarInterface::loadTestData() {
|
|
|
|
}
|