#ifndef TACHOMETERDATA_H #define TACHOMETERDATA_H #include "cardbase.h" #include #include class TachometerData : public CardBase { public: TachometerData(); TachometerVariables variables_[4]; SpeedAlert alert_danger[CHANNEL_COUNT]; AlarmDangerHigh danger_high[CHANNEL_COUNT_SPEED]; AlarmAlertHigh alert_high[CHANNEL_COUNT_SPEED]; AlarmDangerLow danger_low[CHANNEL_COUNT_SPEED]; AlarmAlertLow alert_low[CHANNEL_COUNT_SPEED]; }; #endif // TACHOMETERDATA_H