home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
c
/
actlib11
/
tvtools
/
clock.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-14
|
574b
|
27 lines
/*---------------------------------------------------------*/
/* */
/* 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