12 lines
242 B
C
12 lines
242 B
C
|
#ifndef SINGLERELAY_DATA_H
|
||
|
#define SINGLERELAY_DATA_H
|
||
|
|
||
|
#include "cardbase.h"
|
||
|
class SingleRelayDataNOK : public CardBase {
|
||
|
public:
|
||
|
SingleRelayDataNOK();
|
||
|
SingleRelayNOK single_relay_nok[RELAY_COUNT];
|
||
|
};
|
||
|
|
||
|
#endif // SINGLERELAY_DATA_H
|