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.
24 lines
492 B
24 lines
492 B
//====== Copyright c 1996-2007, Valve Corporation, All rights reserved. =======//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef CMDHANDLERS_H
|
|
#define CMDHANDLERS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class IToolHandlerInfo
|
|
{
|
|
public:
|
|
virtual BOOL UpdateCmdUI( CCmdUI *pCmdUI ) = 0;
|
|
virtual BOOL Execute( UINT uMsg ) = 0;
|
|
};
|
|
|
|
IToolHandlerInfo * _ToolToHanderInfo(UINT uMsg);
|
|
|
|
#endif // #ifndef CMDHANDLERS_H
|