home *** CD-ROM | disk | FTP | other *** search
- //***************************************************************************
- //
- // SLDEMO3.H - Header file
- //
- // Steven R Clabaugh
- // SRC Enterprises
- //
- //***************************************************************************
-
- //***************************************************************************
- //***************************************************************************
- //
- // Define the application object class
- //
- //***************************************************************************
- //***************************************************************************
- class CTheApp : public CWinApp
- {
-
- //***************************************
- // Data Members
- //***************************************
-
- private:
-
- // Window Class Name
- // Initialized by AfxRegisterWndClass call in InitApplication
- CString m_WndClassName;
-
- //***************************************
- // Function Members
- //***************************************
-
- protected:
-
- virtual BOOL InitApplication();
- virtual BOOL InitInstance();
-
- }; // End Class CTheApp
- //***************************************************************************
- //***************************************************************************
-
- //***************************************************************************
- //***************************************************************************
- //
- // Define the application's main window object class
- //
- //***************************************************************************
- //***************************************************************************
- class CMainWnd : public CFrameWnd
- {
-
- //***************************************
- // Data Members
- //***************************************
-
- public:
-
- CSRCEntSL m_MySlider, m_MyGauge;
-
- //***************************************
- // Function Members
- //***************************************
-
- public:
-
- CMainWnd(CString ClassName); // Constructor
-
- // *** Message Map
- protected:
-
- //{{AFX_MSG(CMainWnd)
- afx_msg void OnAbout();
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnMySlider();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP() // Should be last in the class definition
-
-
- }; // END Class CMainWnd
- //***************************************************************************
- //***************************************************************************
-
-