home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------*/
- /* */
- /* Clock.h : Header file for clock.cpp */
- /*---------------------------------------------------------*/
-
- #if ! defined( __CLOCK_H ) && defined(Uses_TClockView)
- #define __CLOCK_H
-
-
- class TClockView : public TView
- {
-
- public:
-
- TClockView( TRect& r = TRect(0, 0, 0, 0) );
- virtual void draw();
- virtual void update();
-
- private:
-
- char lastTime[9];
- char curTime[9];
-
- };
-
- #endif // __CLOCK_H
-