You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
Django/Jinja
16 lines
355 B
Django/Jinja
#pragma once
|
|
|
|
#include "rpc/RpcChannel.h"
|
|
|
|
class {{ cls.name }}Proxy {
|
|
public:
|
|
explicit {{ cls.name }}Proxy(RpcChannel& ch);
|
|
{% for m in cls.methods %}
|
|
{{ m.return_type }} {{ m.name }}({% for a in m.args %}{{ a.type }} {{ a.name }}{% if not loop.last %}, {% endif %}{% endfor %});
|
|
{% endfor %}
|
|
|
|
private:
|
|
class Impl;
|
|
Impl* impl;
|
|
};
|