Source code of Windows XP (NT5)
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.

42 lines
915 B

  1. // maindoc.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // MAINDOC view
  5. class MAINDOC : public CView
  6. {
  7. protected:
  8. MAINDOC(); // protected constructor used by dynamic creation
  9. DECLARE_DYNCREATE(MAINDOC)
  10. // Attributes
  11. public:
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(MAINDOC)
  17. protected:
  18. virtual void OnDraw(CDC* pDC); // overridden to draw this view
  19. //}}AFX_VIRTUAL
  20. // Implementation
  21. protected:
  22. virtual ~MAINDOC();
  23. #ifdef _DEBUG
  24. virtual void AssertValid() const;
  25. virtual void Dump(CDumpContext& dc) const;
  26. #endif
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(MAINDOC)
  30. // NOTE - the ClassWizard will add and remove member functions here.
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////