/srv/osrm/osrm-backend/third_party/vtzero/include/vtzero
NameSizeModeActions
builder.hpp485920644editdlrm
builder_impl.hpp96380644editdlrm
encoded_property_value.hpp91050644editdlrm
exception.hpp32880644editdlrm
feature.hpp106250644editdlrm
feature_builder_impl.hpp38370644editdlrm
geometry.hpp170860644editdlrm
index.hpp82490644editdlrm
layer.hpp166650644editdlrm
output.hpp21850644editdlrm
property.hpp24410644editdlrm
property_mapper.hpp30010644editdlrm
property_value.hpp136970644editdlrm
types.hpp125610644editdlrm
vector_tile.hpp103180644editdlrm
version.hpp9380644editdlrm
Edit: /srv/osrm/osrm-backend/third_party/vtzero/include/vtzero/version.hpp (938B)
#ifndef VTZERO_VERSION_HPP #define VTZERO_VERSION_HPP /***************************************************************************** vtzero - Tiny and fast vector tile decoder and encoder in C++. This file is from https://github.com/mapbox/vtzero where you can find more documentation. *****************************************************************************/ /** * @file version.hpp * * @brief Contains the version number macros for the vtzero library. */ /// The major version number #define VTZERO_VERSION_MAJOR 1 /// The minor version number #define VTZERO_VERSION_MINOR 0 /// The patch number #define VTZERO_VERSION_PATCH 1 /// The complete version number #define VTZERO_VERSION_CODE \ (VTZERO_VERSION_MAJOR * 10000 + VTZERO_VERSION_MINOR * 100 + \ VTZERO_VERSION_PATCH) /// Version number as string #define VTZERO_VERSION_STRING "1.0.1" #endif // VTZERO_VERSION_HPP