include/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Fri, 13 Jul 2018 23:02:09 +0200
branchv_0
changeset 3 cdfb91189c9e
parent 2 include/common.h@1a574113da20
permissions -rw-r--r--
split common.h into typedefs.h and format.h

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

}
}