// netDoc.h : interface of the CNetDoc class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_NETDOC_H__671D31DE_1141_11D4_812A_00105A07EA1C__INCLUDED_) #define AFX_NETDOC_H__671D31DE_1141_11D4_812A_00105A07EA1C__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 class CNetDoc : public CDocument { protected: // create from serialization only CNetDoc(); DECLARE_DYNCREATE(CNetDoc) // Attributes public: // Operations public: void CreateNewBitmapWindow(LPSTR lpCaption, LBitmapWindow* pLBitmapSrc); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CNetDoc) public: virtual BOOL OnNewDocument(); virtual void Serialize(CArchive& ar); virtual BOOL OnOpenDocument(LPCTSTR lpszPathName); virtual BOOL OnSaveDocument(LPCTSTR lpszPathName); virtual void OnCloseDocument(); //}}AFX_VIRTUAL // Implementation public: L_BOOL m_bBitmapWindowInList; L_UINT32 m_uWindowID; LInet* m_pInetRemoteClient; LBitmapWindow* m_pBitmapWindow; virtual ~CNetDoc(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: // Generated message map functions protected: //{{AFX_MSG(CNetDoc) afx_msg void OnFileClose(); afx_msg void OnFileSaveAs(); afx_msg void OnUpdateFileSaveAs(CCmdUI* pCmdUI); afx_msg void OnEditCopy(); afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI); afx_msg void OnEditPaste(); afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Developer Studio will insert additional declarations immediately before the previous line. #endif // !defined(AFX_NETDOC_H__671D31DE_1141_11D4_812A_00105A07EA1C__INCLUDED_)