include/relpipe/protocol/typedefs.h
branchv_0
changeset 0 0f855036489e
child 3 64049055fc1d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/relpipe/protocol/typedefs.h	Sun Aug 19 20:34:11 2018 +0200
@@ -0,0 +1,15 @@
+#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;
+
+}
+}
\ No newline at end of file