mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
20 lines
336 B
C++
20 lines
336 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/insight/Collector.h>
|
|
|
|
namespace beast {
|
|
namespace insight {
|
|
|
|
/** A Collector which does not collect metrics. */
|
|
class NullCollector : public Collector
|
|
{
|
|
public:
|
|
explicit NullCollector() = default;
|
|
|
|
static std::shared_ptr<Collector>
|
|
New();
|
|
};
|
|
|
|
} // namespace insight
|
|
} // namespace beast
|