Retro68/LaunchAPPL/Client/Classic.h

16 lines
301 B
C
Raw Normal View History

2017-10-03 09:57:56 +00:00
#ifndef CLASSIC_H
#define CLASSIC_H
#include "LaunchMethod.h"
class Classic : public LaunchMethod
{
public:
virtual std::string GetName() { return "classic"; }
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 // CLASSIC_H