IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 15, 2004, 12:18:02 PM (22 years ago)
Author:
desonia
Message:

extracted the vector of pointers functionality to a new object, psArray.

File:
1 edited

Legend:

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

    r1193 r1228  
    1010 *  @ingroup LinkedList
    1111 *
    12  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-08 01:05:00 $
     12 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-15 22:18:02 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020
    2121#include "psCompare.h"
    22 #include "psVector.h"
     22#include "psArray.h"
    2323
    2424/** @addtogroup LinkedList
     
    156156/** Convert a linked list to an array
    157157 *
    158  *  @return psVector*   A new psVector populated with elements from the list,
     158 *  @return psArray*   A new psArray populated with elements from the list,
    159159 *                      or NULL if the given dlist parameter is NULL.
    160160 */
    161 psVector* psListToVector(
     161psArray* psListToArray(
    162162    psList *dlist                      ///< List to convert
    163163);
     
    165165/** Convert array to a doubly-linked list
    166166 *
    167  *  @return psList*     A new psList populated with elements formt the psVector,
     167 *  @return psList*     A new psList populated with elements formt the psArray,
    168168 *                      or NULL is the given arr parameter is NULL.
    169169 */
    170 psList* psVectorToList(
    171     psVector* arr                      ///< vector to convert
     170psList* psArrayToList(
     171    psArray* arr                      ///< vector to convert
    172172);
    173173
Note: See TracChangeset for help on using the changeset viewer.