blob: 6bac18e6608ec4d6aff32b50d2ab3a182c70c0e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|