mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-08 16:02:27 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
21 lines
536 B
C++
21 lines
536 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
#include <xrpl/beast/utility/PropertyStream.h>
|
|
#include <xrpl/server/Port.h>
|
|
#include <xrpl/server/detail/ServerImpl.h>
|
|
|
|
#include <boost/asio/io_context.hpp>
|
|
|
|
namespace xrpl {
|
|
|
|
/** Create the HTTP server using the specified handler. */
|
|
template <class Handler>
|
|
std::unique_ptr<Server>
|
|
make_Server(Handler& handler, boost::asio::io_context& io_context, beast::Journal journal)
|
|
{
|
|
return std::make_unique<ServerImpl<Handler>>(handler, io_context, journal);
|
|
}
|
|
|
|
} // namespace xrpl
|