File:  [Public] / libwww / Robot / src / HTQueue.html
Revision 1.1: download - view: text, annotated - select for diffs
Mon Oct 26 22:45:34 1998 UTC (25 years, 7 months ago) by frystyk
Branches: MAIN
CVS tags: repeat-requests, candidate-5-4-1, before_webdav, Release-5-4-0, Release-5-3-1, Release-5-2-8, Release-5-2-6, Release-5-2, HEAD, Before-New-Trace-Messages
New version of libwww webbot hacked up by John Punin: Conatins a full robots.txt parser and breadth first search algorithm

<HTML>
<HEAD>
  <!-- Changed by: John R. Punin,  24-10-98 -->
  <TITLE>The Queue Class</TITLE>
</HEAD>
<BODY>
<H1>
  The Queue Class
</H1>
<PRE>
/*
**      (c) COPYRIGHT MIT 1995.
**      Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>
<PRE>
#ifndef HTQUEUE_H
#define HTQUEUE_H

#include "WWWLib.h"
</PRE>
<H2>
  Methods
</H2>
<PRE>
PUBLIC HTList * HTQueue_new(void);
PUBLIC BOOL HTQueue_delete(HTList *me);
PUBLIC BOOL HTQueue_enqueue(HTList *me,void *newObject);
PUBLIC BOOL HTQueue_append(HTList *me,void *newObject);
PUBLIC BOOL HTQueue_dequeue(HTList *me);
PUBLIC BOOL HTQueue_isEmpty(HTList *me);
PUBLIC void * HTQueue_headOfQueue(HTList *me);
PUBLIC int HTQueue_count(HTList *me);
</PRE>
<PRE>
#endif /* HTQUEUE_H */
</PRE>
<P>
  <HR>
<ADDRESS>
  @(#) $Id: HTQueue.html,v 1.1 1998/10/26 22:45:34 frystyk Exp $
</ADDRESS>
</BODY></HTML>

Webmaster