You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
718 B
30 lines
718 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//============================================================================= |
|
|
|
#ifndef IRESPONSE_H |
|
#define IRESPONSE_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Callback interface for server updates |
|
//----------------------------------------------------------------------------- |
|
class IResponse |
|
{ |
|
public: |
|
// called when the server has successfully responded |
|
virtual void ServerResponded() = 0; |
|
|
|
// called when a server response has timed out |
|
virtual void ServerFailedToRespond() = 0; |
|
|
|
}; |
|
|
|
|
|
#endif // IRESPONSE_H
|
|
|