mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-05 04:06:45 +00:00
17 lines
351 B
C++
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
|