| OLD | NEW |
| 1 {%- import "interface_macros.tmpl" as interface_macros %} | 1 {%- import "interface_macros.tmpl" as interface_macros %} |
| 2 class {{interface.name}}Proxy; | 2 class {{interface.name}}Proxy; |
| 3 class {{interface.name}}Stub; | 3 class {{interface.name}}Stub; |
| 4 | 4 |
| 5 class {{interface.name}}RequestValidator; | 5 class {{interface.name}}RequestValidator; |
| 6 {%- if interface|has_callbacks %} | 6 {%- if interface|has_callbacks %} |
| 7 class {{interface.name}}ResponseValidator; | 7 class {{interface.name}}ResponseValidator; |
| 8 {%- endif %} | 8 {%- endif %} |
| 9 | 9 |
| 10 class {{interface.name}} { | 10 class {{interface.name}} { |
| 11 public: | 11 public: |
| 12 static const char Name_[]; | 12 static const char Name_[]; |
| 13 static const uint32_t Version_ = {{interface.version}}; | 13 static const uint32_t Version_ = {{interface.version}}; |
| 14 static const bool PassesAssociatedKinds_ = {% if interface|passes_associated_k
inds %}true{% else %}false{% endif %}; | 14 static const bool PassesAssociatedKinds_ = {% if interface|passes_associated_k
inds %}true{% else %}false{% endif %}; |
| 15 | 15 |
| 16 using GenericInterface_ = {{interface|get_qualified_generic_interface_name}}; |
| 16 using Proxy_ = {{interface.name}}Proxy; | 17 using Proxy_ = {{interface.name}}Proxy; |
| 17 using Stub_ = {{interface.name}}Stub; | 18 using Stub_ = {{interface.name}}Stub; |
| 18 | 19 |
| 19 using RequestValidator_ = {{interface.name}}RequestValidator; | 20 using RequestValidator_ = {{interface.name}}RequestValidator; |
| 20 {%- if interface|has_callbacks %} | 21 {%- if interface|has_callbacks %} |
| 21 using ResponseValidator_ = {{interface.name}}ResponseValidator; | 22 using ResponseValidator_ = {{interface.name}}ResponseValidator; |
| 22 {%- else %} | 23 {%- else %} |
| 23 using ResponseValidator_ = mojo::PassThroughFilter; | 24 using ResponseValidator_ = mojo::PassThroughFilter; |
| 24 {%- endif %} | 25 {%- endif %} |
| 25 | 26 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 41 {#--- Methods #} | 42 {#--- Methods #} |
| 42 virtual ~{{interface.name}}() {} | 43 virtual ~{{interface.name}}() {} |
| 43 | 44 |
| 44 {%- for method in interface.methods %} | 45 {%- for method in interface.methods %} |
| 45 {% if method.response_parameters != None %} | 46 {% if method.response_parameters != None %} |
| 46 using {{method.name}}Callback = {{interface_macros.declare_callback(method)}}; | 47 using {{method.name}}Callback = {{interface_macros.declare_callback(method)}}; |
| 47 {%- endif %} | 48 {%- endif %} |
| 48 virtual void {{method.name}}({{interface_macros.declare_request_params("", met
hod)}}) = 0; | 49 virtual void {{method.name}}({{interface_macros.declare_request_params("", met
hod)}}) = 0; |
| 49 {%- endfor %} | 50 {%- endfor %} |
| 50 }; | 51 }; |
| OLD | NEW |