1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-11-05 09:53:45 +02:00
gmenu2x/src/launcher.h

24 lines
373 B
C
Raw Normal View History

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