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