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

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TURLView
  4. //    Include File:    turlview.h
  5. //    Purpose:    Provide a view for any URL
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        04-08-94    created
  9. #include"turlview.h"
  10.  
  11. Boolean TURLView::isDownload()    {
  12. //    Purpose:    Tell the caller wether or not this was a file
  13. //            downloaded.
  14. //    Arguments:    void
  15. //    Return Value:    Boolean    True if was a download.
  16. //                False if wasn't a download.
  17. //    Remarks/Portability/Dependencies/Restrictions:
  18. //        This function works in conjunction with the DoNotDisplay
  19. //            member.
  20. //    Revision History:
  21. //        04-08-94    created
  22.  
  23.     //    Just return our value that is already set.
  24.     return(B_download);
  25. }