IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 2, 2005, 2:54:13 PM (21 years ago)
Author:
desonia
Message:

Added SWIG and autoconf.

File:
1 edited

Legend:

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

    r2204 r3115  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-10-27 00:57:31 $
     14 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-02-03 00:54:10 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5656/*@null@*/
    5757psBitSet* psBitSetAlloc(
    58     psS32 n                              ///< Number of bits in psBitSet array
     58    psS32 n                            ///< Number of bits in psBitSet array
    5959);
    6060
     
    6969psBitSet* psBitSetSet(
    7070    /* @returned@ */
    71     psBitSet* restrict inMask,         ///< Pointer to psBitSet to be set.
    72     psS32 bit                            ///< Bit to be set.
     71    psBitSet* inMask,                  ///< Pointer to psBitSet to be set.
     72    psS32 bit                          ///< Bit to be set.
    7373);
    7474
     
    8383psBitSet* psBitSetClear(
    8484    /* @returned@ */
    85     psBitSet* restrict inMask,         ///< Pointer to psBitSet to be cleared.
    86     psS32 bit                            ///< Bit to be cleared.
     85    psBitSet* inMask,                  ///< Pointer to psBitSet to be cleared.
     86    psS32 bit                          ///< Bit to be cleared.
    8787);
    8888
     
    9898
    9999psBool psBitSetTest(
    100     const psBitSet* restrict inMask,   ///< Pointer psBitSet to be tested.
    101     psS32 bit                            ///< Bit to be tested.
     100    const psBitSet* inMask,            ///< Pointer psBitSet to be tested.
     101    psS32 bit                          ///< Bit to be tested.
    102102);
    103103
     
    111111psBitSet* psBitSetOp(
    112112    /* @returned@ */
    113     psBitSet* restrict outMask,        ///< Resulting psBitSet from binary operation
    114     const psBitSet* restrict inMask1,  ///< First psBitSet on which to operate
     113    psBitSet* outMask,                 ///< Resulting psBitSet from binary operation
     114    const psBitSet* inMask1,           ///< First psBitSet on which to operate
    115115    char *operator,                    ///< Bit operation
    116     const psBitSet* restrict inMask2   ///< First psBitSet on which to operate
     116    const psBitSet* inMask2            ///< First psBitSet on which to operate
    117117);
    118118
     
    126126psBitSet* psBitSetNot(
    127127    psBitSet* outBitSet,               ///< Resulting psBitSet from operation
    128     const psBitSet* restrict inBitSet  ///< Input psBitSet
     128    const psBitSet* inBitSet           ///< Input psBitSet
    129129);
    130130
     
    138138
    139139char *psBitSetToString(
    140     const psBitSet* restrict inMask    ///< psBitSet to convert */
     140    const psBitSet* inMask             ///< psBitSet to convert */
    141141);
    142142
Note: See TracChangeset for help on using the changeset viewer.