include/relpipe/writer/typedefs.h
branchv_0
changeset 20 bef6648e79b1
parent 3 cdfb91189c9e
child 29 142bdbba520f
equal deleted inserted replaced
19:98b901d7bb95 20:bef6648e79b1
       
     1 #pragma once
       
     2 
       
     3 #include <cstdint>
       
     4 #include <string>
       
     5 
       
     6 namespace relpipe {
       
     7 namespace writer {
       
     8 
       
     9 using octet_t = uint8_t;
       
    10 using integer_t = uint64_t;
       
    11 using boolean_t = bool;
       
    12 using string_t = std::wstring;
       
    13 
       
    14 }
       
    15 }