include/relpipe/writer/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 20:30:55 +0200
branchv_0
changeset 20 bef6648e79b1
parent 3 include/typedefs.h@cdfb91189c9e
child 29 142bdbba520f
permissions -rw-r--r--
relpipe-lib-writer: move public header files to: include/relpipe/writer/

#pragma once

#include <cstdint>
#include <string>

namespace relpipe {
namespace writer {

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

}
}