protozero
Minimalistic protocol buffer decoder and encoder in C++.
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
include
protozero
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 2
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.2"
20
21
22
#endif // PROTOZERO_VERSION_HPP
Generated on Sun Nov 22 2015 16:50:37 for protozero by
1.8.9.1