summaryrefslogtreecommitdiff
path: root/hammer/pakviewdirec.h
diff options
context:
space:
mode:
Diffstat (limited to 'hammer/pakviewdirec.h')
-rw-r--r--hammer/pakviewdirec.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/hammer/pakviewdirec.h b/hammer/pakviewdirec.h
new file mode 100644
index 0000000..325688b
--- /dev/null
+++ b/hammer/pakviewdirec.h
@@ -0,0 +1,55 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//
+//=============================================================================//
+// PakViewDirec.h : header file
+//
+
+/////////////////////////////////////////////////////////////////////////////
+// CPakViewDirec view
+
+#include <afxcview.h>
+
+class CPakViewDirec : public CTreeView
+{
+protected:
+ CPakViewDirec(); // protected constructor used by dynamic creation
+ DECLARE_DYNCREATE(CPakViewDirec)
+
+// Attributes
+public:
+ CPakDoc* GetDocument()
+ { return (CPakDoc*)m_pDocument; }
+
+// Operations
+public:
+
+// Overrides
+ // ClassWizard generated virtual function overrides
+ //{{AFX_VIRTUAL(CPakViewDirec)
+ public:
+ virtual void OnInitialUpdate();
+ protected:
+ virtual void OnDraw(CDC* pDC); // overridden to draw this view
+ //}}AFX_VIRTUAL
+
+// Implementation
+protected:
+ virtual ~CPakViewDirec();
+#ifdef _DEBUG
+ virtual void AssertValid() const;
+ virtual void Dump(CDumpContext& dc) const;
+#endif
+
+ // Generated message map functions
+protected:
+ //{{AFX_MSG(CPakViewDirec)
+ // NOTE - the ClassWizard will add and remove member functions here.
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+};
+
+/////////////////////////////////////////////////////////////////////////////