Annotation of libwww/Robot/src/HTQueue.html, revision 1.1

1.1     ! frystyk     1: <HTML>
        !             2: <HEAD>
        !             3:   <!-- Changed by: John R. Punin,  24-10-98 -->
        !             4:   <TITLE>The Queue Class</TITLE>
        !             5: </HEAD>
        !             6: <BODY>
        !             7: <H1>
        !             8:   The Queue Class
        !             9: </H1>
        !            10: <PRE>
        !            11: /*
        !            12: **      (c) COPYRIGHT MIT 1995.
        !            13: **      Please first read the full copyright statement in the file COPYRIGH.
        !            14: */
        !            15: </PRE>
        !            16: <PRE>
        !            17: #ifndef HTQUEUE_H
        !            18: #define HTQUEUE_H
        !            19: 
        !            20: #include "WWWLib.h"
        !            21: </PRE>
        !            22: <H2>
        !            23:   Methods
        !            24: </H2>
        !            25: <PRE>
        !            26: PUBLIC HTList * HTQueue_new(void);
        !            27: PUBLIC BOOL HTQueue_delete(HTList *me);
        !            28: PUBLIC BOOL HTQueue_enqueue(HTList *me,void *newObject);
        !            29: PUBLIC BOOL HTQueue_append(HTList *me,void *newObject);
        !            30: PUBLIC BOOL HTQueue_dequeue(HTList *me);
        !            31: PUBLIC BOOL HTQueue_isEmpty(HTList *me);
        !            32: PUBLIC void * HTQueue_headOfQueue(HTList *me);
        !            33: PUBLIC int HTQueue_count(HTList *me);
        !            34: </PRE>
        !            35: <PRE>
        !            36: #endif /* HTQUEUE_H */
        !            37: </PRE>
        !            38: <P>
        !            39:   <HR>
        !            40: <ADDRESS>
        !            41:   @(#) $Id: HTAccess.html,v 2.87 1998/09/30 21:41:51 frystyk Exp $
        !            42: </ADDRESS>
        !            43: </BODY></HTML>

Webmaster