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