tippecanoe/protozero/version.hpp

35 lines
919 B
C++
Raw Normal View History

2016-04-22 17:10:33 -07:00
#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.
*****************************************************************************/
2017-06-30 11:20:26 -07:00
/**
* @file version.hpp
*
* @brief Contains macros defining the protozero version.
*/
/// The major version number
2016-04-22 17:10:33 -07:00
#define PROTOZERO_VERSION_MAJOR 1
2017-06-30 11:20:26 -07:00
/// The minor version number
#define PROTOZERO_VERSION_MINOR 5
2016-04-22 17:10:33 -07:00
2017-06-30 11:20:26 -07:00
/// 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)
2016-04-22 17:10:33 -07:00
2017-06-30 11:20:26 -07:00
/// Version number as string
#define PROTOZERO_VERSION_STRING "1.5.2"
2016-04-22 17:10:33 -07:00
#endif // PROTOZERO_VERSION_HPP