IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 383


Ignore:
Timestamp:
Apr 2, 2004, 4:31:27 AM (22 years ago)
Author:
rhl
Message:

reinstated PS_CONCAT macros

File:
1 edited

Legend:

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

    r344 r383  
    2828
    2929/* \} */ // End of SystemGroup Functions
    30 
     30/*
     31 * Concatenate two macro arguments
     32 */
     33#define P_PS_CONCAT(A, B) A ## B              //!< Expands to AB
     34#define PS_CONCAT(A, B) A ## B                //!< Also Expands to AB
     35#define PS_CONCAT2(A, B) PS_CONCAT(A, B)      //!< Also expands to AB
     36#define PS_CONCAT3(A, B, C) A ## B ## C       //!< Expands to ABC
     37#define PS_CONCAT4(A, B, C, D) A ## B ## C ## D //!< Expands to ABCD
     38 
    3139#define PS_STRING(S) #S                 ///< converts argument to string
    3240
Note: See TracChangeset for help on using the changeset viewer.