| 
    DynaMix
    1.3.7
    
   A new take on polymorphism in C++ 
   | 
 
Macros | |
| #define | DYNAMIX_VERSION_MAJOR 1 | 
| #define | DYNAMIX_VERSION_MINOR 3 | 
| #define | DYNAMIX_VERSION_SUB_MINOR 7 | 
| #define | DYNAMIX_VERSION (DYNAMIX_VERSION_MAJOR*10000 + DYNAMIX_VERSION_MINOR*100 + DYNAMIX_VERSION_SUB_MINOR) | 
Optional header file, which contains library version info.
| #define DYNAMIX_VERSION (DYNAMIX_VERSION_MAJOR*10000 + DYNAMIX_VERSION_MINOR*100 + DYNAMIX_VERSION_SUB_MINOR) | 
The library's version.
It is composed of major*10000 + minor*100 + subminor. For example, version 2.31.11 would be 23111.