include/relpipe/reader/typedefs.h
branchv_0
changeset 10 7fe3975f7e4b
parent 4 da021e58c946
child 29 755978b0935c
equal deleted inserted replaced
9:517888868e55 10:7fe3975f7e4b
       
     1 #pragma once
       
     2 
       
     3 #include <cstdint>
       
     4 #include <string>
       
     5 
       
     6 namespace relpipe {
       
     7 namespace reader {
       
     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 }