Retro68/LaunchAPPL/Client/Serial.h

17 lines
375 B
C
Raw Normal View History

2018-04-20 22:03:29 +00:00
#ifndef SERIAL_H
#define SERIAL_H
#include "LaunchMethod.h"
class Serial : public LaunchMethod
{
public:
virtual std::string GetName() { return "serial"; }
virtual void GetOptions(options_description& desc);
virtual bool CheckOptions(variables_map& options);
2018-04-20 22:03:29 +00:00
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
2018-04-20 22:03:29 +00:00
};
#endif // EXECUTOR_H