mirror of https://github.com/Icinga/icinga2.git
23 lines
434 B
C++
23 lines
434 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef TYPEQUERYHANDLER_H
|
|
#define TYPEQUERYHANDLER_H
|
|
|
|
#include "remote/httphandler.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class TypeQueryHandler final : public HttpHandler
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(TypeQueryHandler);
|
|
|
|
bool HandleRequest(const ApiUser::Ptr& user, HttpRequest& request,
|
|
HttpResponse& response, const Dictionary::Ptr& params) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* TYPEQUERYHANDLER_H */
|