| 117 | } |
| 118 | |
| 119 | ClientImpl* ClientImpl::ctor(const maajs::CallbackInfo& info) |
| 120 | { |
| 121 | try { |
| 122 | auto params = maajs::UnWrapArgs<std::tuple<maajs::OptionalParam<std::string>>>(info); |
| 123 | return new ClientImpl { std::get<0>(params).value_or("") }; |
| 124 | } |
| 125 | catch (std::exception&) { |
| 126 | return nullptr; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void ClientImpl::init_proto(maajs::ObjectType proto, maajs::FunctionType) |
| 131 | { |
nothing calls this directly
no outgoing calls
no test coverage detected