generated from Sithas/conan_template
30 lines
652 B
C++
30 lines
652 B
C++
#pragma once
|
|
|
|
#include <boost/beast/core.hpp>
|
|
#include <boost/beast/http.hpp>
|
|
#include <boost/beast/version.hpp>
|
|
#include <boost/asio/dispatch.hpp>
|
|
#include <boost/asio/strand.hpp>
|
|
#include <boost/config.hpp>
|
|
#include <algorithm>
|
|
#include <cstdlib>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
namespace uad
|
|
{
|
|
namespace beast = boost::beast;
|
|
namespace http = beast::http;
|
|
namespace net = boost::asio;
|
|
|
|
beast::string_view MimeType(beast::string_view path);
|
|
|
|
std::string PathCat(beast::string_view base, beast::string_view path);
|
|
|
|
void Fail(beast::error_code ec, char const* what);
|
|
}
|