Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.0 KiB

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // PakFrame.h : header file
  9. //
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CPakFrame frame
  12. class CPakFrame : public CMDIChildWnd
  13. {
  14. DECLARE_DYNCREATE(CPakFrame)
  15. protected:
  16. CPakFrame(); // protected constructor used by dynamic creation
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CPakFrame)
  24. protected:
  25. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. CSplitterWnd SplitWnd;
  30. virtual ~CPakFrame();
  31. // Generated message map functions
  32. //{{AFX_MSG(CPakFrame)
  33. // NOTE - the ClassWizard will add and remove member functions here.
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. /////////////////////////////////////////////////////////////////////////////