15 lines
246 B
C++
15 lines
246 B
C++
#ifndef TACHOMETERDATA_H
|
|
#define TACHOMETERDATA_H
|
|
|
|
#include "cardbase.h"
|
|
|
|
class TachometerData : public CardBase {
|
|
public:
|
|
TachometerData();
|
|
|
|
TachometerVariables variables_[4];
|
|
SpeedAlert speed_alert;
|
|
};
|
|
|
|
#endif // TACHOMETERDATA_H
|