Go to the documentation of this file.
39 #ifndef _xmlwrapp_version_h_
40 #define _xmlwrapp_version_h_
42 #define XMLWRAPP_VERSION_MAJOR 0
43 #define XMLWRAPP_VERSION_MINOR 7
44 #define XMLWRAPP_VERSION_MICRO 0
49 #define XMLWRAPP_CHECK_VERSION(major, minor, micro) \
51 XMLWRAPP_VERSION_MAJOR > (major) \
53 (XMLWRAPP_VERSION_MAJOR == (major) && \
54 XMLWRAPP_VERSION_MINOR >= (minor)) \
56 (XMLWRAPP_VERSION_MAJOR == (major) && \
57 (XMLWRAPP_VERSION_MINOR == (minor) && \
58 XMLWRAPP_VERSION_MICRO >= (micro)) \
61 #endif // _xmlwrapp_version_h_