| 253 | CRPCConvertTable(); |
| 254 | |
| 255 | bool convert(const std::string& method, int idx) { |
| 256 | return (members.count(std::make_pair(method, idx)) > 0); |
| 257 | } |
| 258 | bool convert(const std::string& method, const std::string& name) { |
| 259 | return (membersByName.count(std::make_pair(method, name)) > 0); |
| 260 | } |
no test coverage detected