helper functions */
| 83 | |
| 84 | /* helper functions */ |
| 85 | bool RegisterOpLoadMethod(const std::string& op_name, const any& load_func) |
| 86 | { |
| 87 | if(op_load_map_.count(op_name)) |
| 88 | return false; |
| 89 | |
| 90 | op_load_map_[op_name] = load_func; |
| 91 | return true; |
| 92 | } |
| 93 | |
| 94 | bool FindOpLoadMethod(const std::string& op_name) |
| 95 | { |
no outgoing calls
no test coverage detected