IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 15, 2004, 3:20:03 PM (22 years ago)
Author:
eugene
Message:

added Doxygen \file and \defgroup entries
some basic reorganization

File:
1 edited

Legend:

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

    r196 r247  
    11#if !defined(PS_MISC_H)
    22#define PS_MISC_H
    3 /**
    4  * Concatenate two macro arguments
     3
     4/** \file psMisc.h
     5 *  \brief miscellaneous system utilities
     6 *  \ingroup SystemGroup
    57 */
    6 #define P_PS_CONCAT(A, B) A ## B        //!< Expands to AB
    7 #define PS_CONCAT(A, B) A ## B          //!< Also Expands to AB
    8 #define PS_CONCAT2(A, B) PS_CONCAT(A, B) //!< Also expands to AB
    9 #define PS_CONCAT3(A, B, C) A ## B ## C //!< Expands to ABC
    10 #define PS_CONCAT4(A, B, C, D) A ## B ## C ## D //!< Expands to ABCD
    118
    129#define PS_STRING(S) #S                 //!< converts argument to string
     
    2724    );
    2825
     26/** Magic values for errors */
     27enum {
     28    PS_NO_VALUE = -111,                 //!< Corresponding value not yet measured
     29    PS_NO_ERROR = -222                  //!< Corresponding value has no error
     30};
     31
    2932#endif
Note: See TracChangeset for help on using the changeset viewer.