lichao
2021-03-29 5657dca25451cfb63a90a3908db0c464fe3f343d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * =====================================================================================
 *
 *       Filename:  defs.h
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  2021年03月26日 19时26分17秒
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  Li Chao (), 
 *   Organization:  
 *
 * =====================================================================================
 */
 
#ifndef DEFS_KP8LKGD0
#define DEFS_KP8LKGD0
 
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
 
typedef boost::uuids::uuid MQId;
 
const MQId kBusQueueId = boost::uuids::string_generator()("01234567-89ab-cdef-8349-1234567890ff");
 
#endif // end of include guard: DEFS_KP8LKGD0