summaryrefslogtreecommitdiff
path: root/src/types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.hpp')
-rw-r--r--src/types.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/types.hpp b/src/types.hpp
index adc28f6f..9505f2cd 100644
--- a/src/types.hpp
+++ b/src/types.hpp
@@ -201,4 +201,13 @@ public:
SERIALISABLE_PROTOTYPES();
};
+class Type_Function:
+ public Serialisable
+{
+ bool is_unsafe;
+ ::std::string m_abi;
+ TypeRef m_rettype;
+ ::std::vector<TypeRef> m_arg_types;
+};
+
#endif // TYPES_HPP_INCLUDED