Retro68/LaunchAPPL/Client/TCP.h

17 lines
363 B
C
Raw Normal View History

2018-05-09 21:16:45 +00:00
#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);
2018-05-09 21:16:45 +00:00
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
2018-05-09 21:16:45 +00:00
};
#endif // EXECUTOR_H