home *** CD-ROM | disk | FTP | other *** search
- // scrltmdi.h : header file
- //
-
- // This is a part of the Objective Grid C++ Library.
- // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
- // All rights reserved.
- //
- // This source code is only intended as a supplement to
- // the Objective Grid Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding
- // the Objective Grid product.
- //
-
- #ifndef _SCRLTMDI_H_
- #define _SCRLTMDI_H_
-
- #ifndef _GXTWND_H_
- #include "gxtwnd.h"
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CScrltabsMDIChildWnd frame
-
- class CScrltabsMDIChildWnd : public CMDIChildWnd
- {
- DECLARE_DYNCREATE(CScrltabsMDIChildWnd)
- protected:
- CScrltabsMDIChildWnd(); // protected constructor used by dynamic creation
-
- // Attributes
- public:
- CGXTabWnd m_wndTab;
-
- // Operations
- public:
- BOOL OnCreateClient(LPCREATESTRUCT /*lpcs*/, CCreateContext* pContext);
-
- // Implementation
- protected:
- virtual ~CScrltabsMDIChildWnd();
-
- // Generated message map functions
- //{{AFX_MSG(CScrltabsMDIChildWnd)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- #endif // _SCRLTMDI_H_
-