35 lines
668 B
C
35 lines
668 B
C
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $Workfile: $
|
|||
|
// $Date: $
|
|||
|
//
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
// $Log: $
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
#if !defined( IPROFILING_H )
|
|||
|
#define IPROFILING_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
#include <vgui/vgui.h>
|
|||
|
|
|||
|
namespace vgui
|
|||
|
{
|
|||
|
class Panel;
|
|||
|
}
|
|||
|
|
|||
|
abstract_class IProfiling
|
|||
|
{
|
|||
|
public:
|
|||
|
virtual void Create( vgui::VPANEL parent ) = 0;
|
|||
|
virtual void Destroy( void ) = 0;
|
|||
|
};
|
|||
|
|
|||
|
extern IProfiling *profiling;
|
|||
|
|
|||
|
#endif // IPROFILING_H
|