include/typedefs.h
branchv_0
changeset 3 cdfb91189c9e
parent 2 1a574113da20
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/typedefs.h	Fri Jul 13 23:02:09 2018 +0200
@@ -0,0 +1,15 @@
+#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;
+
+}
+}
\ No newline at end of file