Team Fortress 2 Source Code as on 22/4/2020
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.

37 lines
619 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef MDICLIENTWND_H
  8. #define MDICLIENTWND_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. class CMDIClientWnd : public CWnd
  13. {
  14. public:
  15. CMDIClientWnd();
  16. virtual ~CMDIClientWnd();
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CMDIClientWnd)
  19. //}}AFX_VIRTUAL
  20. protected:
  21. //{{AFX_MSG(CMDIClientWnd)
  22. afx_msg BOOL OnEraseBkgnd(CDC *pDC);
  23. //}}AFX_MSG
  24. DECLARE_MESSAGE_MAP()
  25. };
  26. #endif // MDICLIENTWND_H