// [!output INPLACE_FRAME_HEADER] : interface of the [!output INPLACE_FRAME_CLASS] class // #pragma once class [!output INPLACE_FRAME_CLASS] : public [!output INPLACE_FRAME_BASE_CLASS] { DECLARE_DYNCREATE([!output INPLACE_FRAME_CLASS]) public: [!output INPLACE_FRAME_CLASS](); // Attributes public: // Operations public: // Overrides [!if DOCKING_TOOLBAR] public: virtual BOOL OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc); [!endif] virtual BOOL PreCreateWindow(CREATESTRUCT& cs); // Implementation public: virtual ~[!output INPLACE_FRAME_CLASS](); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: [!if DOCKING_TOOLBAR] CToolBar m_wndToolBar; [!if TOOLBAR_STYLE_REBAR] CDialogBar m_wndDlgBar; CReBar m_wndReBar; [!endif] [!endif] COleDropTarget m_dropTarget; COleResizeBar m_wndResizeBar; // Generated message map functions protected: afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); DECLARE_MESSAGE_MAP() };