Index: trunk/psLib/src/collections/psVector.h
===================================================================
--- trunk/psLib/src/collections/psVector.h	(revision 672)
+++ trunk/psLib/src/collections/psVector.h	(revision 811)
@@ -19,6 +19,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-05-13 23:36:27 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-05-29 01:08:46 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -88,4 +88,20 @@
 );
 
+/** Recycle a vector.
+ *
+ * Uses psLib memory allocation functions to reallocate a vector collection of data. The vector is reallocated
+ * according to the psElemType type parameter.
+ *
+ * @return psVector*: Pointer to psVector.
+ *
+ */
+psVector *psVectorRecycle(
+    psVector *restrict psVec,
+    ///< Vector to recycle.  If NULL, a new vector is created.  No effort taken to preserve the values.
+
+    unsigned int nalloc,                ///< Total number of elements to make available.
+    psElemType type                     ///< the datatype of the returned vector
+);
+
 /** Deallocate a vector.
  *
