include/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jul 2018 17:04:24 +0200
branchv_0
changeset 3 630c54da42c9
parent 1 c80d55cdb42d
child 4 da021e58c946
permissions -rw-r--r--
add new files to the project

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

}
}