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/psArray.h

    r3933 r3966  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.22.8.1 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-05-13 22:30:02 $
     14 *  @version $Revision: 1.22.8.2 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-05-19 01:09:56 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8080    int delta,
    8181    ///< the amount to expand array, if necessary.  If less than one, 10 will be used.
    82     psPtr data                         ///< the data pointer to add to psArray
     82    const psPtr data   ///< the data pointer to add to psArray
    8383);
    8484
     
    9393psBool psArrayRemove(
    9494    psArray* psArr,                    ///< array to operate on
    95     psPtr data                         ///< the data pointer to remove from psArray
     95    const psPtr data   ///< the data pointer to remove from psArray
    9696);
    9797
     
    134134    psArray* in,                       ///< input array to set element in
    135135    psU32 position,                    ///< the element position to set
    136     void* value                        ///< the value to set it to
     136    const void* value   ///< the value to set it to
    137137);
    138138
     
    142142 */
    143143void* psArrayGet(
    144     psArray* in,                       ///< input array to get element from
     144    const psArray* in,   ///< input array to get element from
    145145    psU32 position                     ///< the element position to get
    146146);
Note: See TracChangeset for help on using the changeset viewer.