include/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Jul 2018 00:45:21 +0200
branchv_0
changeset 8 03750aff8619
parent 3 cdfb91189c9e
permissions -rw-r--r--
writer only writes + refactoring

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

}
}