include/relpipe/reader/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 21:30:32 +0200
branchv_0
changeset 10 7fe3975f7e4b
parent 4 include/typedefs.h@da021e58c946
child 29 755978b0935c
permissions -rw-r--r--
relpipe-lib-reader: move public header files to: include/relpipe/reader/

#pragma once

#include <cstdint>
#include <string>

namespace relpipe {
namespace reader {

using octet_t = uint8_t;
using integer_t = uint64_t;
using boolean_t = bool;
using string_t = std::wstring;

}
}