#ifndef MBGL_UTIL_HTTP_HEADER #define MBGL_UTIL_HTTP_HEADER #include #include #include namespace mbgl { namespace http { class CacheControl { public: static CacheControl parse(const std::string&); optional maxAge; bool mustRevalidate = false; optional toTimePoint() const; }; } // namespace http } // namespace mbgl #endif