Retro68/LaunchAPPL/Client/TCP.h
2018-05-14 00:41:12 +02:00

17 lines
351 B
C++

#ifndef TCP_H
#define TCP_H
#include "LaunchMethod.h"
class TCP : public LaunchMethod
{
public:
virtual std::string GetName() { return "tcp"; }
virtual void GetOptions(options_description& desc);
virtual bool CheckOptions(variables_map& options);
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
};
#endif // EXECUTOR_H