diff options
Diffstat (limited to 'game/client/econ/confirm_delete_dialog.h')
| -rw-r--r-- | game/client/econ/confirm_delete_dialog.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/game/client/econ/confirm_delete_dialog.h b/game/client/econ/confirm_delete_dialog.h new file mode 100644 index 0000000..6bac18e --- /dev/null +++ b/game/client/econ/confirm_delete_dialog.h @@ -0,0 +1,28 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef CONFIRM_DELETE_DIALOG_H +#define CONFIRM_DELETE_DIALOG_H +#ifdef _WIN32 +#pragma once +#endif + +#include "confirm_dialog.h" + +//----------------------------------------------------------------------------- +// Purpose: A generic delete confirmation dialog - see CConfirmDialog. +//----------------------------------------------------------------------------- +class CConfirmDeleteDialog : public CConfirmDialog +{ + DECLARE_CLASS_SIMPLE( CConfirmDeleteDialog,CConfirmDialog ); +public: + CConfirmDeleteDialog( vgui::Panel *parent ); + + virtual void ApplySchemeSettings( vgui::IScheme *pScheme ); +}; + +#endif // CONFIRM_DELETE_DIALOG_H |