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

    r3264 r3966  
    1212 *  @author Robert DeSonia, MHPCC
    1313 *
    14  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-02-17 19:26:23 $
     14 *  @version $Revision: 1.7.8.1 $ $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
     
    5454    psHash* table,                 ///< table to insert in
    5555    const char *key,               ///< key to use
    56     psPtr data                     ///< data to insert
     56    const psPtr data   ///< data to insert
    5757);
    5858
    5959/// Lookup key in table.
    6060psPtr psHashLookup(
    61     psHash* table,                 ///< table to lookup key in
     61    const psHash* table,  ///< table to lookup key in
    6262    const char *key                ///< key to lookup
    6363);
     
    7171/// List all keys in table.
    7272psList* psHashKeyList(
    73     psHash* table                  ///< table to list keys from.
     73    const psHash* table   ///< table to list keys from.
    7474);
    7575
     
    7979 */
    8080psArray* psHashToArray(
    81     psHash* table                  ///< table to convert to psArray
     81    const psHash* table   ///< table to convert to psArray
    8282);
    8383
Note: See TracChangeset for help on using the changeset viewer.