/srv/osrm/osrm-backend/third_party/protozero/include/protozero
NameSizeModeActions
basic_pbf_builder.hpp89370644editdlrm
basic_pbf_writer.hpp364850644editdlrm
buffer_fixed.hpp57980644editdlrm
buffer_string.hpp20710644editdlrm
buffer_tmpl.hpp34640644editdlrm
buffer_vector.hpp21740644editdlrm
byteswap.hpp29310644editdlrm
config.hpp12870644editdlrm
data_view.hpp58690644editdlrm
exception.hpp29740644editdlrm
iterators.hpp153560644editdlrm
pbf_builder.hpp8010644editdlrm
pbf_message.hpp57810644editdlrm
pbf_reader.hpp343140644editdlrm
pbf_writer.hpp27120644editdlrm
types.hpp18370644editdlrm
varint.hpp78220644editdlrm
version.hpp9190644editdlrm
Edit: /srv/osrm/osrm-backend/third_party/protozero/include/protozero/version.hpp (919B)
#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 7 /// The patch number #define PROTOZERO_VERSION_PATCH 0 /// 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.7.0" #endif // PROTOZERO_VERSION_HPP