protozero
Minimalistic protocol buffer decoder and encoder in C++.
version.hpp
1 #ifndef PROTOZERO_VERSION_HPP
2 #define PROTOZERO_VERSION_HPP
3 
4 /*****************************************************************************
5 
6 protozero - Minimalistic protocol buffer decoder and encoder in C++.
7 
8 This file is from https://github.com/mapbox/protozero where you can find more
9 documentation.
10 
11 *****************************************************************************/
12 
13 #define PROTOZERO_VERSION_MAJOR 1
14 #define PROTOZERO_VERSION_MINOR 2
15 #define PROTOZERO_VERSION_PATCH 3
16 
17 #define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)
18 
19 #define PROTOZERO_VERSION_STRING "1.2.3"
20 
21 
22 #endif // PROTOZERO_VERSION_HPP