Revision fcab1da9525095c81da5ff806f402713df2cda6a authored by Eric Fischer on 08 April 2019, 23:33:03 UTC, committed by Eric Fischer on 08 April 2019, 23:33:03 UTC
2 parent s a8a183d + 9d06af9
Raw File
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