swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: d72639b8f7161b291d2d05ce48f6bb904a848e1b authored by Eric Fischer on 26 April 2016, 00:00:32 UTC
Merge pull request #219 from mapbox/protozero
Tip revision: d72639b
version.hpp
#ifndef PROTOZERO_VERSION_HPP
#define PROTOZERO_VERSION_HPP

/*****************************************************************************

protozero - Minimalistic protocol buffer decoder and encoder in C++.

This file is from https://github.com/mapbox/protozero where you can find more
documentation.

*****************************************************************************/

#define PROTOZERO_VERSION_MAJOR 1
#define PROTOZERO_VERSION_MINOR 3
#define PROTOZERO_VERSION_PATCH 0

#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)

#define PROTOZERO_VERSION_STRING "1.3.0"


#endif // PROTOZERO_VERSION_HPP
back to top