diff --git a/.gitattributes b/.gitattributes
index bd11d7518c5d65c6daad2ce864bdaa6a11236668..7d1f9d1d83bc45b108fd4d5861d29fb293542097 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -223,6 +223,7 @@ libIRDB/include/core/reloc.hpp -text
 libIRDB/include/core/scoop.hpp -text
 libIRDB/include/core/type.hpp -text
 libIRDB/include/core/variantid.hpp -text
+libIRDB/include/decode/decode.hpp -text
 libIRDB/include/decode/decode_bea.hpp -text
 libIRDB/include/decode/decode_cs.hpp -text
 libIRDB/include/decode/decode_meta.hpp -text
diff --git a/libIRDB/include/decode/decode.hpp b/libIRDB/include/decode/decode.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..41e23126c77706bb7e6492cb648338dc76cce1e3
--- /dev/null
+++ b/libIRDB/include/decode/decode.hpp
@@ -0,0 +1,20 @@
+#ifndef libdecode_decode_hpp
+#define libdecode_decode_hpp
+
+
+#include <decode/decode_meta.hpp>
+#include <decode/operand_meta.hpp>
+
+
+namespace libIRDB
+{
+using namespace std;
+using namespace libIRDB;
+
+
+typedef DecodedInstructionMeta_t DecodedInstruction_t;
+typedef DecodedOperandMeta_t DecodedOperand_t;
+typedef DecodedOperandMetaVector_t DecodedOperandVector_t;
+}
+
+#endif