MainFrm.h
上传用户:hawkcdm
上传日期:2013-02-10
资源大小:411k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. // Markup Release 6.1 Lite
  4. // Copyright (C) 1999-2001 First Objective Software, Inc. All rights reserved
  5. // This entire notice must be retained in this source code
  6. // Redistributing this source code requires written permission
  7. // This software is provided "as is", with no warranty.
  8. // Latest fixes enhancements and documentation at www.firstobject.com
  9. #if !defined(AFX_MAINFRM_H__774D686B_8271_11D3_B1CF_00105A27C570__INCLUDED_)
  10. #define AFX_MAINFRM_H__774D686B_8271_11D3_B1CF_00105A27C570__INCLUDED_
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. class CMainFrame : public CMDIFrameWnd
  15. {
  16. DECLARE_DYNAMIC(CMainFrame)
  17. public:
  18. CMainFrame();
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. void SetStatus( CString csStatus );
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CMainFrame)
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CMainFrame();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. CStatusBar m_wndStatusBar;
  37. CString m_csStatus;
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CMainFrame)
  41. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //    DO NOT EDIT what you see in these blocks of generated code!
  44. //}}AFX_MSG
  45. afx_msg void OnUpdateStatus(CCmdUI *pCmdUI);
  46. afx_msg LRESULT OnSetText(WPARAM, LPARAM);
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_MAINFRM_H__774D686B_8271_11D3_B1CF_00105A27C570__INCLUDED_)