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

    r1073 r1228  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-06-23 23:00:15 $
     13 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-07-15 22:18:02 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4949        psC32   *C32;                   ///< Single-precision complex data.
    5050        psC64   *C64;                   ///< Double-precision complex data.
    51         psPTR   *PTR;                   ///< Void pointers.
    5251        psPTR    V;                     ///< Pointer to data.
    5352    } data;                             ///< Union for data types.
     
    10099);
    101100
    102 /** Deallocate/Dereference elements of a void pointer vector.
    103  *
    104  * Uses psLib memory allocation functions to deallocate/dereference elements of a vector of void pointers.
    105  * This function does not free the vector elements unless the user provides a elemFree function
    106  * pointer. If the elemFree function pointer is NULL, the reference cound of the elements are decremented
    107  * without being freed.  The vector psVec is not freed, and its elements will all be set to NULL.
    108  *
    109  */
    110 void psVectorElementFree(
    111     psVector *restrict psVec    ///< Void pointer vector to destroy.
    112 );
    113 
    114101/// @}
    115102
Note: See TracChangeset for help on using the changeset viewer.