Changeset 247 for trunk/archive/pslib/include/psMisc.h
- Timestamp:
- Mar 15, 2004, 3:20:03 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psMisc.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psMisc.h
r196 r247 1 1 #if !defined(PS_MISC_H) 2 2 #define PS_MISC_H 3 /** 4 * Concatenate two macro arguments 3 4 /** \file psMisc.h 5 * \brief miscellaneous system utilities 6 * \ingroup SystemGroup 5 7 */ 6 #define P_PS_CONCAT(A, B) A ## B //!< Expands to AB7 #define PS_CONCAT(A, B) A ## B //!< Also Expands to AB8 #define PS_CONCAT2(A, B) PS_CONCAT(A, B) //!< Also expands to AB9 #define PS_CONCAT3(A, B, C) A ## B ## C //!< Expands to ABC10 #define PS_CONCAT4(A, B, C, D) A ## B ## C ## D //!< Expands to ABCD11 8 12 9 #define PS_STRING(S) #S //!< converts argument to string … … 27 24 ); 28 25 26 /** Magic values for errors */ 27 enum { 28 PS_NO_VALUE = -111, //!< Corresponding value not yet measured 29 PS_NO_ERROR = -222 //!< Corresponding value has no error 30 }; 31 29 32 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
