IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 12:44:25 PM (22 years ago)
Author:
desonia
Message:

fixed some stupid indent-induced formating problems and added doxygen
comments.

File:
1 edited

Legend:

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

    r1407 r1426  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-07 00:06:06 $
     13 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-09 22:44:25 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3232typedef struct
    3333{
    34     psType type;                // /< Type of data.
     34    psType type;                ///< Type of data.
    3535
    3636    union {
    37         psU8 U8;                // /< Unsigned 8-bit integer data.
    38         psU16 U16;              // /< Unsigned 16-bit integer data.
    39         psU32 U32;              // /< Unsigned 32-bit integer data.
    40         psU64 U64;              // /< Unsigned 64-bit integer data.
    41         psS8 S8;                // /< Signed 8-bit integer data.
    42         psS16 S16;              // /< Signed 16-bit integer data.
    43         psS32 S32;              // /< Signed 32-bit integer data.
    44         psS64 S64;              // /< Signed 64-bit integer data.
    45         psF32 F32;              // /< Single-precision float data.
    46         psF64 F64;              // /< Double-precision float data.
    47         psC32 C32;              // /< Single-precision complex data.
    48         psC64 C64;              // /< Double-precision complex data.
    49     } data;                     // /< Union for data types.
     37        psU8 U8;                ///< Unsigned 8-bit integer data.
     38        psU16 U16;              ///< Unsigned 16-bit integer data.
     39        psU32 U32;              ///< Unsigned 32-bit integer data.
     40        psU64 U64;              ///< Unsigned 64-bit integer data.
     41        psS8 S8;                ///< Signed 8-bit integer data.
     42        psS16 S16;              ///< Signed 16-bit integer data.
     43        psS32 S32;              ///< Signed 32-bit integer data.
     44        psS64 S64;              ///< Signed 64-bit integer data.
     45        psF32 F32;              ///< Single-precision float data.
     46        psF64 F64;              ///< Double-precision float data.
     47        psC32 C32;              ///< Single-precision complex data.
     48        psC64 C64;              ///< Double-precision complex data.
     49    } data;                     ///< Union for data types.
    5050}
    5151psScalar;
     
    6565 *
    6666 */
    67 psScalar *psScalarAlloc(psC64 value,    // /< Data to be put into psScalar.
    68                         psElemType dataType     // /< Type of data to be held by psScalar.
     67psScalar *psScalarAlloc(psC64 value,    ///< Data to be put into psScalar.
     68                        psElemType dataType     ///< Type of data to be held by psScalar.
    6969                       );
    7070
     
    7676 *
    7777 */
    78 void psScalarFree(psScalar * restrict scalar    // /< Scalar to free.
     78void psScalarFree(psScalar * restrict scalar    ///< Scalar to free.
    7979                 );
    8080
Note: See TracChangeset for help on using the changeset viewer.