include/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jul 2018 17:06:04 +0200
branchv_0
changeset 4 da021e58c946
parent 1 c80d55cdb42d
permissions -rw-r--r--
rename 'writer' namespace to '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;

}
}