MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / Process

Method Process

Win32Lib/Process.cpp:18–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16namespace Win32 {
17
18Process::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
33Process::Process(const std::wstring& pathName, const std::wstring& args)
34{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected