home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / inc / tclockvi.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  704 b   |  36 lines

  1. #ifndef __TCLOCKVIEW_H
  2. //    Avoid include redundancy
  3. #define __TCLOCKVIEW_H
  4.  
  5. //    Copyright (c) 1993, University of Kansas, All Rights Reserved
  6. //
  7. //    Include File:    TClockVi.H
  8. //    Purpose:    Declaration of TClockView class
  9. //    Remarks/Portability/Dependencies/Restrictions:
  10. //    Revision History:
  11. //        12-13-93    created
  12.  
  13. //    Constant defines
  14. #define Uses_TView
  15. #define Uses_TRect
  16.  
  17. //    Required includes
  18. #include<tv.h>
  19.  
  20. //    Class declarations
  21. class TClockView : public TView    {
  22. public:
  23.     TClockView(TRect& TR_dimensions);
  24.     virtual void draw();
  25.     virtual void update();
  26. private:
  27.     char PastTime[9];
  28.     char PresTime[9];
  29. };
  30.  
  31. //    Global variable declarations
  32.  
  33. //    Macros
  34.  
  35. #endif // __TCLOCKVIEW_H
  36.