include/relpipe/protocol/typedefs.h
branchv_0
changeset 21 c4e54e9be412
parent 20 a8ccd2b19faa
equal deleted inserted replaced
20:a8ccd2b19faa 21:c4e54e9be412
    26 
    26 
    27 namespace relpipe {
    27 namespace relpipe {
    28 namespace protocol {
    28 namespace protocol {
    29 
    29 
    30 using octet_t = uint8_t;
    30 using octet_t = uint8_t;
    31 using integer_t = uint64_t;
    31 using integer_t = int64_t;
    32 using boolean_t = bool;
    32 using boolean_t = bool;
    33 using string_t = std::wstring;
    33 using string_t = std::wstring;
    34 
    34 
    35 }
    35 }
    36 }
    36 }