2018-09-05 02:30:58 +08:00
|
|
|
/// @file
|
|
|
|
|
2017-06-12 16:21:19 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
// transcation and command types defined
|
|
|
|
// in a separate header to avoid cyclic dependencies
|
|
|
|
namespace tx {
|
|
|
|
|
2018-09-05 02:30:58 +08:00
|
|
|
/// Type of a tx::Transcation's id member
|
2018-04-19 21:32:41 +08:00
|
|
|
using TransactionId = uint64_t;
|
2017-06-12 16:21:19 +08:00
|
|
|
|
2018-09-05 02:30:58 +08:00
|
|
|
/// Type of a tx::Transcation's command id member
|
2018-04-19 21:32:41 +08:00
|
|
|
using CommandId = uint32_t;
|
2017-06-12 16:21:19 +08:00
|
|
|
}
|