Retro68/LaunchAPPL/Classic.h
2017-10-05 15:30:58 +02:00

16 lines
292 B
C++

#ifndef CLASSIC_H
#define CLASSIC_H
#include "LaunchMethod.h"
class Classic : public LaunchMethod
{
public:
virtual std::string GetName() { return "classic"; }
virtual bool CheckPlatform();
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
};
#endif // CLASSIC_H