MCPcopy Create free account
hub / github.com/arun11299/cpp-subprocess / executable

Class executable

cpp-subprocess/subprocess.hpp:854–858  ·  view source on GitHub ↗

! * Option to specify the executable name separately * from the args sequence. * In this case the cmd args must only contain the * options required for this executable. * * Eg: executable{"ls"} */

Source from the content-addressed store, hash-verified

852 * Eg: executable{"ls"}
853 */
854struct executable: string_arg
855{
856 template <typename T>
857 executable(T&& arg): string_arg(std::forward<T>(arg)) {}
858};
859
860/*!
861 * Option to set the current working directory

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected