IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2005, 1:40:46 PM (21 years ago)
Author:
desonia
Message:

added comments on the end of #endif and #else

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psArray.h

    r3264 r4162  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-02-17 19:26:23 $
     14 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-08 23:40:45 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4848/** Allocate an array.
    4949 *
    50  * Uses psLib memory allocation functions to create an array collection of 
     50 * Uses psLib memory allocation functions to create an array collection of
    5151 * data
    5252 *
     
    6060/** Reallocate an array.
    6161 *
    62  * Uses psLib memory allocation functions to reallocate an array collection 
    63  * of data. 
     62 * Uses psLib memory allocation functions to reallocate an array collection
     63 * of data.
    6464 *
    6565 * @return psArray* : Pointer to psArray.
     
    8585/** Remove an element from the array
    8686 *
    87  *  Finds and removes the specified data pointer from the list. 
     87 *  Finds and removes the specified data pointer from the list.
    8888 *
    89  * @return bool:  TRUE if the specified data pointer was found and removed, 
     89 * @return bool:  TRUE if the specified data pointer was found and removed,
    9090 *                otherwise FALSE.
    9191 *
     
    9898/** Deallocate/Dereference elements of an array.
    9999 *
    100  * Uses psLib memory allocation functions to deallocate/dereference elements 
     100 * Uses psLib memory allocation functions to deallocate/dereference elements
    101101 * of a array of void pointers.  The array psArr is not freed, and its elements
    102102 * will all be set to NULL.
     
    112112 *  to specify how the objects on the array should be sorted.
    113113 *
    114  *  The comparison function must return an integer less than, equal to, or 
    115  *  greater than zero if the first argument is considered to be respectively 
    116  *  less than, equal to, or greater than the second. 
     114 *  The comparison function must return an integer less than, equal to, or
     115 *  greater than zero if the first argument is considered to be respectively
     116 *  less than, equal to, or greater than the second.
    117117 *
    118  *  If two members compare as equal, their order in the sorted array is 
     118 *  If two members compare as equal, their order in the sorted array is
    119119 *  undefined.
    120120 *
     
    148148/// @}
    149149
    150 #endif
     150#endif // #ifndef PS_ARRAY_H
Note: See TracChangeset for help on using the changeset viewer.