Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-os by
tools/data/rpc/class.cpp
- Committer:
- xuaner
- Date:
- 2017-07-20
- Revision:
- 1:3deb71413561
- Parent:
- 0:f269e3021894
File content as of revision 1:3deb71413561:
class Rpc{{name}} : public RPC { public: Rpc{{name}}({{cons_proto}}) : RPC(name), o({{cons_call}}) {} {{methods}} virtual const struct rpc_method *get_rpc_methods() { static const rpc_method rpc_methods[] = { {{rpc_methods}}, RPC_METHOD_SUPER(RPC) }; return rpc_methods; } static struct rpc_class *get_rpc_class() { static const rpc_function funcs[] = { {"new", rpc_function_caller<const char*, {{cons_type}}, &RPC::construct<Rpc{{name}}, {{cons_type}}> >}, RPC_METHOD_END }; static rpc_class c = {"{{name}}", funcs, NULL}; return &c; } private: {{name}} o; };