| 16 | namespace Win32 { |
| 17 | |
| 18 | Process::Process(const std::wstring& pathName, const std::vector<std::wstring>& args) |
| 19 | { |
| 20 | std::wstring commandLine; |
| 21 | auto it = args.begin(); |
| 22 | while (it != args.end()) |
| 23 | { |
| 24 | if (it != args.begin()) |
| 25 | commandLine += L" "; |
| 26 | commandLine += *it; |
| 27 | ++it; |
| 28 | } |
| 29 | |
| 30 | Run(pathName, commandLine); |
| 31 | } |
| 32 | |
| 33 | Process::Process(const std::wstring& pathName, const std::wstring& args) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected