mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
17 lines
346 B
C
17 lines
346 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
|