/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/pbf_writer.hpp (2712B)
#ifndef PROTOZERO_PBF_WRITER_HPP #define PROTOZERO_PBF_WRITER_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 pbf_writer.hpp * * @brief Contains the pbf_writer class. */ #include "basic_pbf_writer.hpp" #include "buffer_string.hpp" #include #include namespace protozero { /** * Specialization of basic_pbf_writer using std::string as buffer type. */ using pbf_writer = basic_pbf_writer; /// Class for generating packed repeated bool fields. using packed_field_bool = detail::packed_field_varint; /// Class for generating packed repeated enum fields. using packed_field_enum = detail::packed_field_varint; /// Class for generating packed repeated int32 fields. using packed_field_int32 = detail::packed_field_varint; /// Class for generating packed repeated sint32 fields. using packed_field_sint32 = detail::packed_field_svarint; /// Class for generating packed repeated uint32 fields. using packed_field_uint32 = detail::packed_field_varint; /// Class for generating packed repeated int64 fields. using packed_field_int64 = detail::packed_field_varint; /// Class for generating packed repeated sint64 fields. using packed_field_sint64 = detail::packed_field_svarint; /// Class for generating packed repeated uint64 fields. using packed_field_uint64 = detail::packed_field_varint; /// Class for generating packed repeated fixed32 fields. using packed_field_fixed32 = detail::packed_field_fixed; /// Class for generating packed repeated sfixed32 fields. using packed_field_sfixed32 = detail::packed_field_fixed; /// Class for generating packed repeated fixed64 fields. using packed_field_fixed64 = detail::packed_field_fixed; /// Class for generating packed repeated sfixed64 fields. using packed_field_sfixed64 = detail::packed_field_fixed; /// Class for generating packed repeated float fields. using packed_field_float = detail::packed_field_fixed; /// Class for generating packed repeated double fields. using packed_field_double = detail::packed_field_fixed; } // end namespace protozero #endif // PROTOZERO_PBF_WRITER_HPP