mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
//=======================================================================================//
|
|
|
|
#ifndef RECORDINGSESSIONBLOCKMANAGER_H
|
|
#define RECORDINGSESSIONBLOCKMANAGER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
#include "baserecordingsessionblockmanager.h"
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
class CClientRecordingSessionBlockManager : public CBaseRecordingSessionBlockManager
|
|
{
|
|
typedef CBaseRecordingSessionBlockManager BaseClass;
|
|
|
|
public:
|
|
CClientRecordingSessionBlockManager( IReplayContext *pContext );
|
|
|
|
//
|
|
// CGenericPersistentManager
|
|
//
|
|
virtual CBaseRecordingSessionBlock *Create();
|
|
|
|
private:
|
|
//
|
|
// CGenericPersistentManager
|
|
//
|
|
virtual IReplayContext *GetReplayContext() const;
|
|
|
|
//
|
|
// CBaseThinker
|
|
//
|
|
virtual float GetNextThinkTime() const;
|
|
virtual void Think();
|
|
|
|
virtual bool ShouldLoadBlocks() const { return false; }
|
|
};
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
#endif // RECORDINGSESSIONBLOCKMANAGER_H
|