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