include/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jul 2018 16:58:33 +0200
branchv_0
changeset 1 c80d55cdb42d
child 4 da021e58c946
permissions -rw-r--r--
copy of .cpp and .h from relpipe-lib-writer.cpp

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

}
}