mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
34
tracker/common/IServerRefreshResponse.h
Normal file
34
tracker/common/IServerRefreshResponse.h
Normal file
@@ -0,0 +1,34 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================
|
||||
|
||||
#ifndef ISERVERREFRESHRESPONSE_H
|
||||
#define ISERVERREFRESHRESPONSE_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
struct serveritem_t;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Callback interface for server updates
|
||||
//-----------------------------------------------------------------------------
|
||||
class IServerRefreshResponse
|
||||
{
|
||||
public:
|
||||
// called when the server has successfully responded
|
||||
virtual void ServerResponded(serveritem_t &server) = 0;
|
||||
|
||||
// called when a server response has timed out
|
||||
virtual void ServerFailedToRespond(serveritem_t &server) = 0;
|
||||
|
||||
// called when the current refresh list is complete
|
||||
virtual void RefreshComplete() = 0;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif // ISERVERREFRESHRESPONSE_H
|
||||
Reference in New Issue
Block a user