Add initial codes
[it/test.git] / simulators / e2sim / src / ASN1 / asn / type_defs.h
diff --git a/simulators/e2sim/src/ASN1/asn/type_defs.h b/simulators/e2sim/src/ASN1/asn/type_defs.h
new file mode 100755 (executable)
index 0000000..b82fd16
--- /dev/null
@@ -0,0 +1,34 @@
+#pragma once
+/*******************************************************************************
+ * @file                  $HeadURL: $
+ * @version               $LastChangedRevision: $
+ * @date                  $LastChangedDate: $
+ * @author                ngf684
+ *
+ * @brief                 /iphy_debug/src/common/type_defs.h:
+ *
+ * Revision History:
+ *  01.06.2012  ngf684          created
+ *
+ * Copyright Nokia 2015. All rights reserved.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
+ *
+ *******************************************************************************/
+
+// Standard Includes: ANSI C/C++, MSA, and Third-Party Libraries
+#include <cstdint>
+
+// Platform Includes: Platform specific classes, functions, and libraries
+
+// Local Includes: Application specific classes, functions, and libraries
+
+typedef uint8_t                u8;
+typedef uint16_t       u16;
+typedef uint32_t       u32;
+typedef uint64_t       u64;
+
+typedef int8_t         i8;
+typedef int16_t                i16;
+typedef int32_t                i32;
+typedef int64_t                i64;