include/relpipe/protocol/typedefs.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 19 Aug 2018 20:34:11 +0200
branchv_0
changeset 0 0f855036489e
child 3 64049055fc1d
permissions -rw-r--r--
common definitions of constants and types

#pragma once

#include <cstdint>
#include <string>

namespace relpipe {
namespace protocol {

using octet_t = uint8_t;
using integer_t = uint64_t;
using boolean_t = bool;
using string_t = std::wstring;

}
}