XLKit  0.1.0
 All Classes Files Functions Typedefs Macros Groups
Other Macros

Other macros defined by xlkit. More...

Macros

#define XLKIT_VERSION_NAME   v0_1_0
 Version namespace for this library.
 
#define XLKIT_MAJOR_VERSION   0
 Major version number.
 
#define XLKIT_MINOR_VERSION   1
 Minor version number.
 
#define XLKIT_PATCH_VERSION   0
 Patch version number.
 
#define XLKIT_VERSION
 Library version as packed integer: "%02x%02x%04x" % (major, minor, patch) More...
 
#define XLKIT_USE_VERSION_NAMESPACE
 Macro used to pull the versioned namespace into the main xlkit namepsace. More...
 

Detailed Description

Other macros defined by xlkit.

Macro Definition Documentation

#define XLKIT_USE_VERSION_NAMESPACE
Value:
namespace XLKIT_VERSION_NAME {} \
using namespace XLKIT_VERSION_NAME;
#define XLKIT_VERSION_NAME
Version namespace for this library.
Definition: xlversion.hpp:33

Macro used to pull the versioned namespace into the main xlkit namepsace.

Note
The empty namespace clause below ensures that XLKIT_VERSION_NAME is recognized as a namespace name.
#define XLKIT_VERSION
Value:
(((XLKIT_MAJOR_VERSION & 0x00FF) << 24) | \
((XLKIT_MINOR_VERSION & 0x00FF) << 16) | \
((XLKIT_PATCH_VERSION & 0xFFFF) ) )
#define XLKIT_MINOR_VERSION
Minor version number.
Definition: xlversion.hpp:38
#define XLKIT_PATCH_VERSION
Patch version number.
Definition: xlversion.hpp:40
#define XLKIT_MAJOR_VERSION
Major version number.
Definition: xlversion.hpp:36

Library version as packed integer: "%02x%02x%04x" % (major, minor, patch)