///////////////////////////////////////////////////////////////////// // ChildView.h - Declares window where drawing will occur // // // // Jim Fawcett, Spring 2004 // ///////////////////////////////////////////////////////////////////// #pragma once // CChildView window class CChildView : public CWnd { // Construction public: CChildView(); // Attributes public: // Operations public: // Overrides protected: virtual BOOL PreCreateWindow(CREATESTRUCT& cs); // Implementation public: virtual ~CChildView(); // Generated message map functions protected: afx_msg void OnPaint(); DECLARE_MESSAGE_MAP() };