protozero
Minimalistic protocol buffer decoder and encoder in C++.
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Macros
Pages
include
protozero
version.hpp
Go to the documentation of this file.
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
19
#define PROTOZERO_VERSION_MAJOR 1
21
23
#define PROTOZERO_VERSION_MINOR 4
24
26
#define PROTOZERO_VERSION_PATCH 5
27
29
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)
30
32
#define PROTOZERO_VERSION_STRING "1.4.5"
33
34
35
#endif // PROTOZERO_VERSION_HPP
Generated on Sat Nov 26 2016 09:08:23 for protozero by
1.8.8