swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 97ace997ff2d709fe2e26e2dda909cf4afd458ac authored by Eric Fischer on 26 August 2020, 19:51:29 UTC
Merge pull request #880 from mapbox/version-1.36.0
Tip revision: 97ace99
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.

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

/**
 * @file version.hpp
 *
 * @brief Contains macros defining the protozero version.
 */

/// The major version number
#define PROTOZERO_VERSION_MAJOR 1

/// The minor version number
#define PROTOZERO_VERSION_MINOR 5

/// The patch number
#define PROTOZERO_VERSION_PATCH 2

/// The complete version number
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)

/// Version number as string
#define PROTOZERO_VERSION_STRING "1.5.2"

#endif // PROTOZERO_VERSION_HPP
back to top