#ifndef LAUNCHER_H #define LAUNCHER_H #include #include class Launcher { public: Launcher(std::vector const& commandLine, bool consoleApp = true); Launcher(std::vector && commandLine, bool consoleApp = true); void exec(); private: std::vector commandLine; bool consoleApp; }; #endif // LAUNCHER_H