include/relpipe/reader/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 18:16:53 +0200
branchv_0
changeset 14 e8de089f95dd
parent 10 7fe3975f7e4b
child 29 755978b0935c
permissions -rw-r--r--
refactoring, move files, use TypeId instead of integer_t

#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;

}
}