diff options
Diffstat (limited to 'modules/codec/c++/schema.hpp')
-rw-r--r-- | modules/codec/c++/schema.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/codec/c++/schema.hpp b/modules/codec/c++/schema.hpp index 5348cfe..82fc0a5 100644 --- a/modules/codec/c++/schema.hpp +++ b/modules/codec/c++/schema.hpp @@ -116,6 +116,9 @@ using VarLong = VariableLengthPrimitive<SignedInteger, 10>; template <class Request, class Response> struct Function { static constexpr string_literal name = "Function"; + + using RequestT = Request; + using ResponseT = Response; }; template <class... T> struct Interface { |