home *** CD-ROM | disk | FTP | other *** search
/ Using VRML (Special Edition) / Special_Edition_Using_VRML_CDROM_Que_1996.iso / webpages / software / win95 / browsers / ambersw / tutorial / lesson3 / mainfrm.h < prev    next >
C/C++ Source or Header  |  1995-09-17  |  1KB  |  45 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     //}}AFX_VIRTUAL
  21.  
  22. // Implementation
  23. public:
  24.     virtual ~CMainFrame();
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29.  
  30. protected:  // control bar embedded members
  31.     CStatusBar  m_wndStatusBar;
  32.     CToolBar    m_wndToolBar;
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMainFrame)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code!
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.