Refactoring
This commit is contained in:
17
CarInterface.h
Normal file
17
CarInterface.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef CARINTERFACE_H
|
||||
#define CARINTERFACE_H
|
||||
|
||||
#include "LiveData.h"
|
||||
|
||||
class CarInterface {
|
||||
|
||||
private:
|
||||
public:
|
||||
LiveData* liveData;
|
||||
void setLiveData(LiveData* pLiveData);
|
||||
virtual void activateCommandQueue();
|
||||
virtual void parseRowMerged();
|
||||
virtual void loadTestData();
|
||||
};
|
||||
|
||||
#endif // CARINTERFACE_H
|
||||
Reference in New Issue
Block a user