home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / tsockvi2.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  696 b   |  24 lines

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TSockView
  4. //    Include File:    tsockvie.h
  5. //    Purpose:    Display total amount of current network activity
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        01-31-94    created
  9. //        02-10-94    Split all members into seperate files.
  10. #include"tsockvie.h"
  11.  
  12. TSockView::TSockView(TRect& TR_dimensions) : TView(TR_dimensions)    {
  13. //    Purpose:    Constructor
  14. //    Arguments:    TR_dimensions    reference to the dimensions of the
  15. //                    view.
  16. //    Return Value:    none
  17. //    Remarks/Portability/Dependencies/Restrictions:
  18. //    Revision History:
  19. //        01-31-94    created
  20.  
  21.     uli_past = 0UL;
  22.     uli_pres = GetSockSize();
  23. }
  24.