mdilogdoc.h
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // MDILogDoc.h : header file
  2. //
  3. class CClientLog;
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMDILogDoc document
  6. class DLL_WAR_CLIENT_ CMDILogDoc : public CDocument
  7. {
  8. public:
  9. static void AddLogLine(LPCSTR Text);
  10. static CMDILogDoc *m_pMyLog;
  11. static CMultiDocTemplate *m_pMyTemplate;
  12. protected:
  13. CMDILogDoc();           // protected constructor used by dynamic creation
  14. DECLARE_DYNCREATE(CMDILogDoc)
  15. static void Declare();
  16. static CClientLog *GetLog();
  17. // Attributes
  18. public:
  19. static CMDILogDoc *CreateLogDoc();
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMDILogDoc)
  25. public:
  26. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  27. virtual BOOL CanCloseFrame(CFrameWnd* pFrame);
  28. virtual void OnCloseDocument();
  29. protected:
  30. virtual BOOL OnNewDocument();
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CMDILogDoc();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMDILogDoc)
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CClientLog - Spesific routines for logging to clients
  48. class DLL_WAR_CLIENT_ CClientLog : public CLog
  49. {
  50. public:
  51. static CClientLog *m_pLog;
  52. public:
  53. CClientLog();
  54. ~CClientLog();
  55. static CClientLog *GetLog() { return m_pLog; }
  56. virtual void LoggedLine(int LogType, LPCSTR Line);
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. // LogMsg - Used to log from mudules without own log handling
  60. DLL_WAR_CLIENT_ void LogMsg(int flag, LPCSTR Format, ...);