IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 12:28:16 PM (22 years ago)
Author:
Paul Price
Message:

Doxygen-ated the source files.

File:
1 edited

Legend:

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

    r149 r153  
    44#include "psArray.h"
    55
    6 /* ps- typedefs so that array names comply with the standard naming convention */
    7 /* These should not be used generally. */
     6/**
     7 * ps- typedefs so that array names comply with the standard naming convention. These should NOT be used
     8 * generally.
     9 */
    810typedef float psFloat;
    911typedef int psInt;
     
    1113typedef double psDouble;
    1214
    13 /* An array of real numbers */
     15/** An array of real numbers */
    1416PS_DECLARE_ARRAY_TYPE(psFloat);
    1517PS_CREATE_ARRAY_TYPE(psFloat);
    1618
    17 /* An array of complex numbers */
     19/** An array of complex numbers */
    1820PS_DECLARE_ARRAY_TYPE(psComplex);
    1921PS_CREATE_ARRAY_TYPE(psComplex);
    2022
    21 /* An array of integers */
     23/** An array of integers */
    2224PS_DECLARE_ARRAY_TYPE(psInt);
    2325PS_CREATE_ARRAY_TYPE(psInt);
    2426
    25 /* An array of double-precision real numbers */
     27/** An array of double-precision real numbers */
    2628PS_DECLARE_ARRAY_TYPE(psDouble);
    2729PS_CREATE_ARRAY_TYPE(psDouble);
Note: See TracChangeset for help on using the changeset viewer.