22 lines
484 B
C++
22 lines
484 B
C++
#ifndef __MAIN51MESSAGE_H_
|
|
#define __MAIN51MESSAGE_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "icsneo/communication/message/message.h"
|
|
#include "icsneo/communication/command.h"
|
|
|
|
namespace icsneo {
|
|
|
|
class Main51Message : public InternalMessage {
|
|
public:
|
|
Main51Message() : InternalMessage(Message::Type::Main51, Network::NetID::Main51) {}
|
|
Command command = Command(0);
|
|
bool forceShortFormat = false; // Necessary for EnableNetworkCom and EnableNetworkComEx
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |