mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
36 lines
658 B
C++
36 lines
658 B
C++
#include "Carbon.h"
|
|
#include "Launcher.h"
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
class CarbonLauncher : public Launcher
|
|
{
|
|
public:
|
|
CarbonLauncher(po::variables_map& options);
|
|
virtual ~CarbonLauncher();
|
|
|
|
virtual bool Go(int timeout = 0);
|
|
|
|
};
|
|
|
|
CarbonLauncher::CarbonLauncher(po::variables_map &options)
|
|
: Launcher(options, ResourceFile::Format::real)
|
|
{
|
|
|
|
}
|
|
|
|
CarbonLauncher::~CarbonLauncher()
|
|
{
|
|
|
|
}
|
|
|
|
bool CarbonLauncher::Go(int timeout)
|
|
{
|
|
return ChildProcess("LaunchCarbon", { appPath.string() }, timeout) == 0;
|
|
}
|
|
|
|
std::unique_ptr<Launcher> Carbon::MakeLauncher(variables_map &options)
|
|
{
|
|
return std::unique_ptr<Launcher>(new CarbonLauncher(options));
|
|
}
|