#pragma once #include #include namespace beast::insight { /** * A Collector which does not collect metrics. */ class NullCollector : public Collector { public: explicit NullCollector() = default; static std::shared_ptr make(); }; } // namespace beast::insight