17 lines
405 B
C
17 lines
405 B
C
|
|
#ifndef HIGH_SPEED_CURRENT_DATA_H
|
||
|
|
#define HIGH_SPEED_CURRENT_DATA_H
|
||
|
|
|
||
|
|
#include "cardbase.h"
|
||
|
|
|
||
|
|
class HighSpeedCurrentData : public CardBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
HighSpeedCurrentData();
|
||
|
|
HighSpeedCurrentVariables variables_[4];
|
||
|
|
AlarmDangerHigh danger_high[CHANNEL_COUNT_SPEED];
|
||
|
|
AlarmAlertHigh alert_high[CHANNEL_COUNT_SPEED];
|
||
|
|
DCOutput dc_output[CHANNEL_COUNT];
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // HIGH_SPEED_CURRENT_DATA_H
|