CCF
Loading...
Searching...
No Matches
http_header_map.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#include <map>
6#include <string>
7
8namespace ccf::http
9{
10 using HeaderMap = std::map<std::string, std::string, std::less<>>;
11 using HeaderKeyValue = HeaderMap::value_type;
12}
Definition http_accept.h:13
std::map< std::string, std::string, std::less<> > HeaderMap
Definition http_header_map.h:10
HeaderMap::value_type HeaderKeyValue
Definition http_header_map.h:11