/* * ===================================================================================== * * Filename: defs.cpp * * Description: * * Version: 1.0 * Created: 2021年04月06日 19时23分14秒 * Revision: none * Compiler: gcc * * Author: Li Chao (), * Organization: * * ===================================================================================== */ #include "defs.h" namespace { const MQId kBHTopicBus = boost::uuids::string_generator()("01234567-89ab-cdef-8349-1234567890ff"); const MQId kBHTopicReqRepCenter = boost::uuids::string_generator()("12345670-89ab-cdef-8349-1234567890ff"); const MQId kBHUniCenter = boost::uuids::string_generator()("87654321-89ab-cdef-8349-1234567890ff"); } // namespace const MQId &BHTopicBusAddress() { return kBHTopicBus; } const MQId &BHTopicCenterAddress() { return kBHTopicReqRepCenter; } const MQId &BHUniCenterAddress() { return kBHUniCenter; }