diff options
Diffstat (limited to 'src/types.hpp')
-rw-r--r-- | src/types.hpp | 9 |
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
|