IXWebSocket/ixwebsocket/IXWebSocketHttpHeaders.h
2018-11-09 18:42:09 -08:00

16 lines
285 B
C++

/*
* IXWebSocketHttpHeaders.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <string>
#include <unordered_map>
namespace ix
{
using WebSocketHttpHeaders = std::unordered_map<std::string, std::string>;
}