mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
28 lines
784 B
C++
28 lines
784 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
//=======================================================================================//
|
|
|
|
#ifndef IRECORDINGSESSION_H
|
|
#define IRECORDINGSESSION_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
#include "interface.h"
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
class CBaseRecordingSessionBlock;
|
|
|
|
class IRecordingSession : public IBaseInterface
|
|
{
|
|
public:
|
|
virtual void AddBlock( CBaseRecordingSessionBlock *pBlock ) = 0;
|
|
};
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
#endif // IRECORDINGSESSION_H
|