mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 09:16:47 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
23 lines
455 B
C++
23 lines
455 B
C++
#pragma once
|
|
|
|
#include <xrpld/peerfinder/PeerfinderManager.h>
|
|
|
|
#include <boost/asio/io_context.hpp>
|
|
|
|
#include <memory>
|
|
|
|
namespace xrpl {
|
|
namespace PeerFinder {
|
|
|
|
/** Create a new Manager. */
|
|
std::unique_ptr<Manager>
|
|
make_Manager(
|
|
boost::asio::io_context& io_context,
|
|
clock_type& clock,
|
|
beast::Journal journal,
|
|
BasicConfig const& config,
|
|
beast::insight::Collector::ptr const& collector);
|
|
|
|
} // namespace PeerFinder
|
|
} // namespace xrpl
|