mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-15 22:08:47 +00:00
17 lines
358 B
C++
17 lines
358 B
C++
#ifndef SSH_H
|
|
#define SSH_H
|
|
|
|
#include "LaunchMethod.h"
|
|
|
|
class SSH : public LaunchMethod
|
|
{
|
|
public:
|
|
virtual std::string GetName() { return "ssh"; }
|
|
virtual void GetOptions(options_description& desc);
|
|
virtual bool CheckOptions(variables_map& options);
|
|
|
|
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
|
|
};
|
|
|
|
#endif // SSH_H
|