aboutsummaryrefslogtreecommitdiff
path: root/sp/src/public/vgui_controls/Divider.h
blob: 1c6e7b093899a79cd7c1a858798ba9f531a709de (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
29
30
31
32
33
34
35
36
37
38
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//

#ifndef DIVIDER_H
#define DIVIDER_H

#ifdef _WIN32
#pragma once
#endif

#include <vgui_controls/Panel.h>

namespace vgui
{

//-----------------------------------------------------------------------------
// Purpose: Thin line used to divide sections in dialogs
//-----------------------------------------------------------------------------
class Divider : public Panel
{
	DECLARE_CLASS_SIMPLE( Divider, Panel );

public:
	Divider(Panel *parent, const char *name);
	~Divider();

	virtual void ApplySchemeSettings(IScheme *pScheme);
};


} // namespace vgui


#endif // DIVIDER_H