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.

24 lines
354 B

  1. #ifndef RIGHTBOTTOMVIEW_H
  2. #define RIGHTBOTTOMVIEW_H
  3. #include "stdafx.h"
  4. #include "Document.h"
  5. class RightBottomView : public CEditView
  6. {
  7. DECLARE_DYNCREATE( RightBottomView )
  8. public:
  9. virtual void OnInitialUpdate();
  10. BOOL PreCreateWindow( CREATESTRUCT& cs );
  11. RightBottomView();
  12. protected:
  13. Document* GetDocument();
  14. };
  15. #endif