| 177 | |
| 178 | bool RegisterGlobalPlugin(const char *name, const char *vendor, const char *email); |
| 179 | inline bool |
| 180 | RegisterGlobalPlugin(std::string const &name, std::string const &vendor, std::string const &email) |
| 181 | { |
| 182 | return RegisterGlobalPlugin(name.c_str(), vendor.c_str(), email.c_str()); |
| 183 | } |
| 184 | |
| 185 | } // namespace atscppapi |
no test coverage detected