Retro68/LaunchAPPL/Client/Carbon.h

16 lines
317 B
C
Raw Permalink Normal View History

2017-10-03 09:57:56 +00:00
#ifndef CARBON_METHOD_H
#define CARBON_METHOD_H
#include "LaunchMethod.h"
class Carbon : public LaunchMethod
{
public:
virtual std::string GetName() { return "carbon"; }
2017-10-03 09:57:56 +00:00
virtual bool CheckPlatform();
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
2017-10-03 09:57:56 +00:00
};
#endif // CARBON_METHOD_H