10 void System(
const char*
const command,
11 const bool throwOnError =
false,
const bool notify =
false);
13 inline void System(
const std::string& command,
14 const bool throwOnError =
false,
const bool notify =
false)
15 {
System(command.c_str(), throwOnError, notify); }
17 inline void System(
const std::ostringstream& command,
18 const bool throwOnError =
false,
const bool notify =
false)
19 {
System(command.str().c_str(), throwOnError, notify); }
21 inline void System(
const std::stringstream& command,
22 const bool throwOnError =
false,
const bool notify =
false)
23 {
System(command.str().c_str(), throwOnError, notify); }
void System(const char *const command, const bool throwOnError, const bool notify)