| 2202 | */ |
| 2203 | template<typename... Args> |
| 2204 | int call(std::initializer_list<const char*> plist, Args&&... args) |
| 2205 | { |
| 2206 | return (detail::call_impl(plist, std::forward<Args>(args)...)); |
| 2207 | } |
| 2208 | |
| 2209 | template<typename... Args> |
| 2210 | int call(const std::string& arg, Args&&... args) |