cesium-native  0.41.0
HttpHeaders.h
1 #pragma once
2 
3 #include <map>
4 #include <string>
5 
6 namespace CesiumAsync {
7 
17  bool operator()(const std::string& s1, const std::string& s2) const;
18 };
19 
23 using HttpHeaders = std::map<std::string, std::string, CaseInsensitiveCompare>;
24 } // namespace CesiumAsync
Classes that support asynchronous operations.
std::map< std::string, std::string, CaseInsensitiveCompare > HttpHeaders
Http Headers that maps case-insensitive header key with header value.
Definition: HttpHeaders.h:23
A case-insensitive less-then string comparison.
Definition: HttpHeaders.h:16