home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Class: TURLView
- // Include File: turlview.h
- // Purpose: Provide a view for any URL.
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 03-29-94 created
- #include"turlview.h"
-
- Boolean TURLView::isIndex() {
- // Purpose: Return wether or not the view is a searchable index.
- // Arguments: void
- // Return Value: Boolean True, view is searchable.
- // False, view is not searchable.
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 03-29-94 created
-
- // Just call a WWW function....
- if(HTAnchor_isIndex(HTp_HyperDoc->HTPAp_node_anchor) == YES) {
- return(True);
- }
- return(False);
- }