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/psBitMask.h

    r149 r153  
    22#define PS_BIT_MASK_H
    33
    4 /* Type for a big bitmask */
    5 /* Set to long int for now */
     4/** Type for a big bitmask.  Set to long int for now. */
    65typedef long int psBitMask;
    76
    87
    9 /* Set a bit mask */
     8/** Set a bit mask */
    109psBitMask *
    11 psSetBitMask(psBitMask *outMask,        // Output bit mask or NULL
    12              const psBitMask *myMask,   // Input bit mask
    13              int bit                    // Bit to set
     10psSetBitMask(psBitMask *outMask,        //!< Output bit mask or NULL
     11             const psBitMask *myMask,   //!< Input bit mask
     12             int bit                    //!< Bit to set
    1413    );
    1514
    16 /* Check a bit mask.  Returns true or false */
     15/** Check a bit mask.  Returns true or false */
    1716int
    18 psCheckBitMask(const psBitMask *checkMask, // Bit mask to check
    19                int bit                  // Bit to check
     17psCheckBitMask(const psBitMask *checkMask, //!< Bit mask to check
     18               int bit                  //!< Bit to check
    2019    );
    2120
    22 /* OR two bit masks */
     21/** OR two bit masks */
    2322psBitMask *
    24 psOrBitMasks(psBitMask *outMask,        // Output bit mask or NULL
    25              const psBitMask *restrict inMask1, // Input bit mask 1
    26              const psBitMask *restrict inMask2 // Input bit mask 2
     23psOrBitMasks(psBitMask *outMask,        //!< Output bit mask or NULL
     24             const psBitMask *restrict inMask1, //!< Input bit mask 1
     25             const psBitMask *restrict inMask2 //!< Input bit mask 2
    2726    );
    2827
    29 /* AND two bit masks */
     28/** AND two bit masks */
    3029psBitMask *
    31 psAndBitMasks(psBitMask *outMask,       // Output bit mask or NULL
    32              const psBitMask *restrict inMask1, // Input bit mask 1
    33              const psBitMask *restrict inMask2 // Input bit mask 2
     30psAndBitMasks(psBitMask *outMask,       //!< Output bit mask or NULL
     31             const psBitMask *restrict inMask1, //!< Input bit mask 1
     32             const psBitMask *restrict inMask2 //!< Input bit mask 2
    3433    );
    3534
Note: See TracChangeset for help on using the changeset viewer.