// CommandLine.cpp // Libunistd Copyright 2016 Robin.Rowe@CinePaint.org // License open source MIT #include "CommandLine.h" namespace portable { void CommandLine::Set(int argc,const char** argv) { this->argc = argc; this->argv = argv; // skip arg[0] = prog_name for(int i=1;i