| 182 | CRPCConvertTable(); |
| 183 | |
| 184 | bool convert(const std::string& method, int idx) { |
| 185 | return (members.count(std::make_pair(method, idx)) > 0); |
| 186 | } |
| 187 | bool convert(const std::string& method, const std::string& name) { |
| 188 | return (membersByName.count(std::make_pair(method, name)) > 0); |
| 189 | } |
no test coverage detected