Changeset 257 for trunk/archive/pslib/include/psStdArrays.h
- Timestamp:
- Mar 18, 2004, 9:37:58 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psStdArrays.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psStdArrays.h
r247 r257 79 79 } psFloatArray; 80 80 81 /** Constructor */81 /** Constructor \ingroup DataGroup */ 82 82 psFloatArray *psFloatArrayAlloc(int s, ///< Total number of elements to make available 83 83 int n ///< Number of elements that will be used 84 84 ); 85 /** Reallocator */85 /** Reallocator \ingroup DataGroup */ 86 86 psFloatArray *psFloatArrayRealloc(psFloatArray *myArray, ///< Array to reallocate 87 87 int s ///< Total number of elements to make available 88 88 ); 89 /** Destructor */89 /** Destructor \ingroup DataGroup */ 90 90 void psFloatArrayFree(psFloatArray *restrict myArray ///< Array to free 91 91 ); … … 109 109 } psComplexArray; 110 110 111 /** Constructor */111 /** Constructor \ingroup DataGroup */ 112 112 psComplexArray *psComplexArrayAlloc(int s, ///< Total number of elements to make available 113 113 int n ///< Number of elements that will be used 114 114 ); 115 /** Reallocator */115 /** Reallocator \ingroup DataGroup */ 116 116 psComplexArray *psComplexArrayRealloc(psComplexArray *myArray, ///< Array to reallocate 117 117 int s ///< Total number of elements to make available 118 118 ); 119 /** Destructor */119 /** Destructor \ingroup DataGroup */ 120 120 void psComplexArrayFree(psComplexArray *restrict myArray ///< Array to free 121 121 ); … … 131 131 } psIntArray; 132 132 133 /** Constructor */133 /** Constructor \ingroup DataGroup */ 134 134 psIntArray *psIntArrayAlloc(int s, ///< Total number of elements to make available 135 135 int n ///< Number of elements that will be used 136 136 ); 137 /** Reallocator */137 /** Reallocator \ingroup DataGroup */ 138 138 psIntArray *psIntArrayRealloc(psIntArray *myArray, ///< Array to reallocate 139 139 int s ///< Total number of elements to make available 140 140 ); 141 /** Destructor */141 /** Destructor \ingroup DataGroup */ 142 142 void psIntArrayFree(psIntArray *restrict myArray ///< Array to free 143 143 ); … … 153 153 } psDoubleArray; 154 154 155 /** Constructor */155 /** Constructor \ingroup DataGroup */ 156 156 psDoubleArray *psDoubleArrayAlloc(int s, ///< Total number of elements to make available 157 157 int n ///< Number of elements that will be used 158 158 ); 159 /** Reallocator */159 /** Reallocator \ingroup DataGroup */ 160 160 psDoubleArray *psDoubleArrayRealloc(psDoubleArray *myArray, ///< Array to reallocate 161 161 int s ///< Total number of elements to make available 162 162 ); 163 /** Destructor */163 /** Destructor \ingroup DataGroup */ 164 164 void psDoubleArrayFree(psDoubleArray *restrict myArray ///< Array to free 165 165 ); … … 175 175 } psVectorArray; 176 176 177 /** Constructor */177 /** Constructor \ingroup DataGroup */ 178 178 psVectorArray *psVectorArrayAlloc(int s, ///< Total number of elements to make available 179 179 int n ///< Number of elements that will be used 180 180 ); 181 /** Reallocator */181 /** Reallocator \ingroup DataGroup */ 182 182 psVectorArray *psVectorArrayRealloc(psVectorArray *myArray, ///< Array to reallocate 183 183 int s ///< Total number of elements to make available 184 184 ); 185 /** Destructor */185 /** Destructor \ingroup DataGroup */ 186 186 void psVectorArrayFree(psVectorArray *restrict myArray ///< Array to free 187 187 ); … … 200 200 } psVoidPtrArray; 201 201 202 /** Constructor */202 /** Constructor \ingroup DataGroup */ 203 203 psVoidPtrArray *psVoidPtrArrayAlloc(int n, //!< Number of elements to use 204 204 int s //!< Total number of elements 205 205 ); 206 /** Reallocate */206 /** Reallocate \ingroup DataGroup */ 207 207 psVoidPtrArray *psVoidPtrArrayRealloc(psVoidPtrArray *arr, //!< Array to reallocate 208 208 int n //!< Number of elements 209 209 ); 210 /** Destructor */210 /** Destructor \ingroup DataGroup */ 211 211 void psVoidPtrArrayFree(psVoidPtrArray *arr, //!< array to destroy 212 212 void (*elemFree)(void *) //!< destructor for array data
Note:
See TracChangeset
for help on using the changeset viewer.
