Files
hpcore/src/msg/controlmsg_common.hpp

16 lines
326 B
C++

#ifndef _HP_MSG_CONTROLMSG_COMMON_
#define _HP_MSG_CONTROLMSG_COMMON_
#include "../pchheader.hpp"
namespace msg::controlmsg
{
// Message field names
constexpr const char *FLD_TYPE = "type";
// Message types
constexpr const char *MSGTYPE_CONTRACT_END = "contract_end";
} // namespace msg::controlmsg
#endif