home *** CD-ROM | disk | FTP | other *** search
- #if ! defined ( WAIT_CURSOR_CLASS_HEADER )
-
- /*
- ** Author: Samuel R. Blackburn
- ** CI$: 76300,326
- ** Internet: sammy@sed.csc.com
- **
- ** You can use it any way you like.
- */
-
- #define WAIT_CURSOR_CLASS_HEADER
-
- class CWaitCursor
- {
- protected:
-
- HCURSOR m_PreviousCursorHandle;
-
- public:
-
- CWaitCursor( int cursor_number = 0 );
-
- /*
- ** Destructor should be virtual according to MSJ article in Sept 1992
- ** "Do More with Less Code:..."
- */
-
- virtual ~CWaitCursor();
- };
-
- #endif // WAIT_CURSOR_CLASS_HEADER
-