icinga2/lib/remote/variablequeryhandler.hpp

27 lines
483 B
C++
Raw Permalink Normal View History

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