IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1477


Ignore:
Timestamp:
Aug 11, 2004, 10:08:08 AM (22 years ago)
Author:
desonia
Message:

doxygen/reformat.

Location:
trunk/psLib/src
Files:
2 edited

Legend:

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

    r1453 r1477  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-10 19:27:56 $
     13 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-11 20:08:08 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6262 * Accepts a complex 64 bit float for input value, as max size, but resizes according to
    6363 * correct type.
    64  * @return psScalar* : Pointer to psScalar.
    6564 *
     65 * @return psScalar*   Pointer to a new psScalar.
    6666 */
    67 psScalar* psScalarAlloc(psC64 value,    ///< Data to be put into psScalar.
    68                         psElemType dataType     ///< Type of data to be held by psScalar.
    69                        );
     67psScalar* psScalarAlloc(
     68    psC64 value,                       ///< Data to be put into psScalar.
     69    psElemType dataType                ///< Type of data to be held by psScalar.
     70);
    7071
    7172/** Deallocate a scalar.
     
    7374 * Uses psLib memory allocation functions to deallocate a scalar.
    7475 *
    75  * @return void.
    76  *
    7776 */
    78 void psScalarFree(psScalar* restrict scalar    ///< Scalar to free.
    79                  );
     77void psScalarFree(
     78    psScalar* restrict scalar          ///< Scalar to free.
     79);
    8080
    8181/** Copy a scalar.
     
    8383 * Uses psLib memory allocation functions to copy a scalar.
    8484 *
    85  * @return void.
    86  *
     85 * @return psScalar*    A copy of the input scalar
    8786 */
    88 psScalar* psScalarCopy(psScalar *scalar    ///< Scalar to copy.
    89                       );
     87psScalar* psScalarCopy(
     88    psScalar *scalar                   ///< Scalar to copy.
     89);
    9090
    9191/// @}
  • trunk/psLib/src/mathtypes/psScalar.h

    r1453 r1477  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-10 19:27:56 $
     13 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-11 20:08:08 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6262 * Accepts a complex 64 bit float for input value, as max size, but resizes according to
    6363 * correct type.
    64  * @return psScalar* : Pointer to psScalar.
    6564 *
     65 * @return psScalar*   Pointer to a new psScalar.
    6666 */
    67 psScalar* psScalarAlloc(psC64 value,    ///< Data to be put into psScalar.
    68                         psElemType dataType     ///< Type of data to be held by psScalar.
    69                        );
     67psScalar* psScalarAlloc(
     68    psC64 value,                       ///< Data to be put into psScalar.
     69    psElemType dataType                ///< Type of data to be held by psScalar.
     70);
    7071
    7172/** Deallocate a scalar.
     
    7374 * Uses psLib memory allocation functions to deallocate a scalar.
    7475 *
    75  * @return void.
    76  *
    7776 */
    78 void psScalarFree(psScalar* restrict scalar    ///< Scalar to free.
    79                  );
     77void psScalarFree(
     78    psScalar* restrict scalar          ///< Scalar to free.
     79);
    8080
    8181/** Copy a scalar.
     
    8383 * Uses psLib memory allocation functions to copy a scalar.
    8484 *
    85  * @return void.
    86  *
     85 * @return psScalar*    A copy of the input scalar
    8786 */
    88 psScalar* psScalarCopy(psScalar *scalar    ///< Scalar to copy.
    89                       );
     87psScalar* psScalarCopy(
     88    psScalar *scalar                   ///< Scalar to copy.
     89);
    9090
    9191/// @}
Note: See TracChangeset for help on using the changeset viewer.