IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2005, 3:09:57 PM (21 years ago)
Author:
Paul Price
Message:

Adding const qualifiers where missing in the docs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_branch_050513/psLib/src/collections/psList.h

    r3409 r3966  
    1010 *  @ingroup LinkedList
    1111 *
    12  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-03-11 23:17:46 $
     12 *  @version $Revision: 1.23.8.1 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-05-19 01:09:56 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8888 */
    8989psList* psListAlloc(
    90     psPtr data
     90    const psPtr data
    9191    ///< initial data item; may be NULL if no an empty psList is desired
    9292)
     
    121121    psList* list,                      ///< list to add item to
    122122    psS32 location,                    ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location.
    123     psPtr data                         ///< data item to add.  If NULL, list is not modified.
     123    const psPtr data   ///< data item to add.  If NULL, list is not modified.
    124124);
    125125
     
    130130psBool psListAddAfter(
    131131    psListIterator* list,              ///< list position to add item to
    132     psPtr data                         ///< data item to add.  If NULL, list is not modified.
     132    const psPtr data   ///< data item to add.  If NULL, list is not modified.
    133133);
    134134
     
    139139psBool psListAddBefore(
    140140    psListIterator* list,              ///< list position to add item to
    141     psPtr data                         ///< data item to add.  If NULL, list is not modified.
     141    const psPtr data   ///< data item to add.  If NULL, list is not modified.
    142142);
    143143
     
    157157psBool psListRemoveData(
    158158    psList* list,                      ///< list to remove element from
    159     psPtr data                         ///< data item to find and remove
     159    const psPtr data   ///< data item to find and remove
    160160);
    161161
     
    196196 */
    197197psArray* psListToArray(
    198     psList* dlist                      ///< List to convert
     198    const psList* dlist   ///< List to convert
    199199);
    200200
     
    205205 */
    206206psList* psArrayToList(
    207     psArray* arr                       ///< vector to convert
     207    const psArray* arr   ///< vector to convert
    208208);
    209209
Note: See TracChangeset for help on using the changeset viewer.