summaryrefslogtreecommitdiff
path: root/hammer/pakframe.h
blob: 00dac22fafca9950477e3ab78ac3721431a2185d (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
39
40
41
42
43
44
45
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//
//=============================================================================//
// PakFrame.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CPakFrame frame

class CPakFrame : public CMDIChildWnd
{
	DECLARE_DYNCREATE(CPakFrame)
protected:
	CPakFrame();           // protected constructor used by dynamic creation

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPakFrame)
	protected:
	virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
	//}}AFX_VIRTUAL

// Implementation
protected:
	CSplitterWnd SplitWnd;
	virtual ~CPakFrame();

	// Generated message map functions
	//{{AFX_MSG(CPakFrame)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////