icinga2/lib/remote/variablequeryhandler.hpp
Johannes Schmidt 62b2dadbac Remove extra parameters from HTTP handler signature
These parameters are no longer needed since they were only used
by EventsHandler which was refactored in an earlier commit.
2025-08-28 13:22:18 +02:00

27 lines
477 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef VARIABLEQUERYHANDLER_H
#define VARIABLEQUERYHANDLER_H
#include "remote/httphandler.hpp"
namespace icinga
{
class VariableQueryHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(VariableQueryHandler);
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
const HttpRequest& request,
HttpResponse& response,
boost::asio::yield_context& yc
) override;
};
}
#endif /* VARIABLEQUERYHANDLER_H */