IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 18, 2004, 9:37:58 PM (22 years ago)
Author:
eugene
Message:

code cleanup for Doxygen support & readability

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psStdArrays.h

    r247 r257  
    7979} psFloatArray;
    8080
    81 /** Constructor */
     81/** Constructor \ingroup DataGroup */
    8282psFloatArray *psFloatArrayAlloc(int s,  ///< Total number of elements to make available
    8383                                int n   ///< Number of elements that will be used
    8484    );
    85 /** Reallocator */
     85/** Reallocator \ingroup DataGroup */
    8686psFloatArray *psFloatArrayRealloc(psFloatArray *myArray, ///< Array to reallocate
    8787                                  int s ///< Total number of elements to make available
    8888    );
    89 /** Destructor */
     89/** Destructor \ingroup DataGroup */
    9090void psFloatArrayFree(psFloatArray *restrict myArray ///< Array to free
    9191    );
     
    109109} psComplexArray;
    110110
    111 /** Constructor */
     111/** Constructor \ingroup DataGroup */
    112112psComplexArray *psComplexArrayAlloc(int s, ///< Total number of elements to make available
    113113                                    int n       ///< Number of elements that will be used
    114114    );
    115 /** Reallocator */
     115/** Reallocator \ingroup DataGroup */
    116116psComplexArray *psComplexArrayRealloc(psComplexArray *myArray, ///< Array to reallocate
    117117                                      int s     ///< Total number of elements to make available
    118118    );
    119 /** Destructor */
     119/** Destructor \ingroup DataGroup */
    120120void psComplexArrayFree(psComplexArray *restrict myArray ///< Array to free
    121121    );
     
    131131} psIntArray;
    132132
    133 /** Constructor */
     133/** Constructor \ingroup DataGroup */
    134134psIntArray *psIntArrayAlloc(int s,      ///< Total number of elements to make available
    135135                            int n       ///< Number of elements that will be used
    136136    );
    137 /** Reallocator */
     137/** Reallocator \ingroup DataGroup */
    138138psIntArray *psIntArrayRealloc(psIntArray *myArray, ///< Array to reallocate
    139139                              int s     ///< Total number of elements to make available
    140140    );
    141 /** Destructor */
     141/** Destructor \ingroup DataGroup */
    142142void psIntArrayFree(psIntArray *restrict myArray ///< Array to free
    143143    );
     
    153153} psDoubleArray;
    154154
    155 /** Constructor */
     155/** Constructor \ingroup DataGroup */
    156156psDoubleArray *psDoubleArrayAlloc(int s, ///< Total number of elements to make available
    157157                                  int n ///< Number of elements that will be used
    158158    );
    159 /** Reallocator */
     159/** Reallocator \ingroup DataGroup */
    160160psDoubleArray *psDoubleArrayRealloc(psDoubleArray *myArray, ///< Array to reallocate
    161161                                    int s       ///< Total number of elements to make available
    162162    );
    163 /** Destructor */
     163/** Destructor \ingroup DataGroup */
    164164void psDoubleArrayFree(psDoubleArray *restrict myArray ///< Array to free
    165165    );
     
    175175} psVectorArray;
    176176
    177 /** Constructor */
     177/** Constructor \ingroup DataGroup */
    178178psVectorArray *psVectorArrayAlloc(int s, ///< Total number of elements to make available
    179179                                  int n ///< Number of elements that will be used
    180180    );
    181 /** Reallocator */
     181/** Reallocator \ingroup DataGroup */
    182182psVectorArray *psVectorArrayRealloc(psVectorArray *myArray, ///< Array to reallocate
    183183                                    int s       ///< Total number of elements to make available
    184184    );
    185 /** Destructor */
     185/** Destructor \ingroup DataGroup */
    186186void psVectorArrayFree(psVectorArray *restrict myArray ///< Array to free
    187187    );
     
    200200} psVoidPtrArray;
    201201
    202 /** Constructor */
     202/** Constructor \ingroup DataGroup */
    203203psVoidPtrArray *psVoidPtrArrayAlloc(int n, //!< Number of elements to use
    204204                                    int s //!< Total number of elements
    205205                                    );
    206 /** Reallocate */
     206/** Reallocate \ingroup DataGroup */
    207207psVoidPtrArray *psVoidPtrArrayRealloc(psVoidPtrArray *arr, //!< Array to reallocate
    208208                                      int n //!< Number of elements
    209209                                      );
    210 /** Destructor */
     210/** Destructor \ingroup DataGroup */
    211211void psVoidPtrArrayFree(psVoidPtrArray *arr, //!< array to destroy
    212212                        void (*elemFree)(void *) //!< destructor for array data
Note: See TracChangeset for help on using the changeset viewer.