iw4x-client/src/Components/Modules/ConnectProtocol.hpp
2017-01-20 14:37:52 +01:00

27 lines
459 B
C++

#pragma once
namespace Components
{
class ConnectProtocol : public Component
{
public:
ConnectProtocol();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* getName() override { return "ConnectProtocol"; };
#endif
static bool IsEvaluated();
static bool Used();
private:
static bool Evaluated;
static std::string ConnectString;
static void EvaluateProtocol();
static bool InstallProtocol();
static void Invocation();
};
}