Refactoring

This commit is contained in:
Lubos Petrovic
2020-11-30 23:27:42 +01:00
parent 0bfac0e76f
commit f3d64e938d
26 changed files with 2137 additions and 2073 deletions

23
CarInterface.cpp Normal file
View File

@@ -0,0 +1,23 @@
#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