RESTinio
version.hpp
Go to the documentation of this file.
1 /*
2  * RESTinio
3  */
4 
12 #pragma once
13 
14 // The current version is 0.6.12
15 //
22 #define RESTINIO_VERSION_MAJOR 0ull
23 
29 #define RESTINIO_VERSION_MINOR 6ull
30 
36 #define RESTINIO_VERSION_PATCH 12ull
37 
49 #define RESTINIO_VERSION_MAKE(major, minor, patch) \
50  (((major) * 1000000ull) + \
51  ((minor) * 1000ull) + \
52  (patch))
53 
60 #define RESTINIO_VERSION RESTINIO_VERSION_MAKE( \
61  RESTINIO_VERSION_MAJOR,\
62  RESTINIO_VERSION_MINOR,\
63  RESTINIO_VERSION_PATCH)
64