#pragma once #include #include #include namespace mbgl { namespace style { namespace conversion { // Workaround until https://github.com/mapbox/mapbox-gl-native/issues/5623 is done. optional parseGeoJSON(const std::string&, Error&); template <> struct Converter { public: optional operator()(const Convertible&, Error&) const; }; } // namespace conversion } // namespace style } // namespace mbgl