config.h File Reference
#include <iterator>
Include dependency graph for config.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
|
Defines |
|
#define | COMET_MAJOR_VER 1 |
|
#define | COMET_BUILDTYPE beta |
|
#define | COMET_MINOR_VER 31 |
|
#define | COMET_BUILD 20040607 |
|
#define | COMET_ALLOW_DECLSPEC_PROPERTY |
|
#define | COMET_STD_SWAP_NOTHROW throw() |
|
#define | COMET_GUID_BASE GUID |
|
#define | COMET_STRICT_TYPENAME typename |
|
#define | COMET_FORCEINLINE inline |
|
#define | UUID GUID |
| #define | COMET_DECLARE_SWAP(TYPE) |
|
#define | COMET_NOTUSED(x) x |
|
#define | COMET_CONST_TYPE(vartype, varname, value) enum { varname = value }; |
|
#define | COMET_CONST_GROUP enum { |
|
#define | COMET_CONST_ENTRY(vartype, varname, value) varname = value, |
|
#define | COMET_CONST_GROUP_END }; |
Variables |
|
const unsigned short | COMET_VARIANT_TRUE = (unsigned short)(0xffff) |
|
const unsigned short | COMET_VARIANT_FALSE = 0 |
Detailed Description
Included by all comet headers to provide compiler-specific configuration.
Define Documentation
| #define COMET_DECLARE_SWAP |
( |
TYPE |
|
) |
|
|
|
|
Value: template<> inline void swap(TYPE &x, TYPE &y)\
{\
x.swap(y);\
}
|