mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
220 B
C++
13 lines
220 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <boost/unordered_map.hpp>
|
|
|
|
namespace RBX
|
|
{
|
|
namespace HttpAux
|
|
{
|
|
typedef boost::unordered_map<std::string, std::string> AdditionalHeaders;
|
|
} // namespace HttpAux
|
|
} // namespace RBX
|