void CommandLine::initFromArray(const ConstArrayRef<const char *> &cmdline) { impl_.reset(new Impl(cmdline.data(), cmdline.size())); }
CommandLine::CommandLine(const ConstArrayRef<const char *> &cmdline) : impl_(new Impl(cmdline.data(), cmdline.size())) { }