Sha256: 0e67f63793527a0e0c6e5278f9bb256327bf1dc20f5fb284a25755fefd622c21
Contents?: true
Size: 569 Bytes
Versions: 14
Compression:
Stored size: 569 Bytes
Contents
#ifndef _NETWORKDETECT_H_ #define _NETWORKDETECT_H_ #pragma once #ifndef _HOST_TRACKER #include <winsock2.h> #include <ws2tcpip.h> #endif #include "../../../shared/NetworkDetectBase.h" /** * Class to wrap the Network functionality, to poll on a specified address to see if * we are able to connect to it. */ class CNetworkDetection : public CNetworkDetectionBase { public: CNetworkDetection() {} ~CNetworkDetection() {} protected: virtual bool CheckConnectivity(); virtual void Cleanup(); private: // Methods virtual void Startup(); }; #endif
Version data entries
14 entries across 14 versions & 2 rubygems