droplet 1.3.0
A multipurpose Discord bot with the hacker in mind
Loading...
Searching...
No Matches
NotFoundHandler.hpp
Go to the documentation of this file.
1/*
2 * (c) Copyright erarnitox.de - All rights reserved
3 * Author: Erarnitox <david@erarnitox.de>
4 *
5 * License: MIT License
6 *
7 * Description:
8 *
9 * Documentation: https://droplet.erarnitox.de/doxygen/html/
10 */
11
12#pragma once
13
14#include <Poco/Net/HTTPRequestHandler.h>
15
16#include <AuthUtils.hpp>
17
18//-----------------------------------------------------
19//
20//-----------------------------------------------------
21class NotFoundHandler : public Poco::Net::HTTPRequestHandler {
22 public:
23 void handleRequest(Poco::Net::HTTPServerRequest& req, Poco::Net::HTTPServerResponse& resp) override;
24};
Definition NotFoundHandler.hpp:21
void handleRequest(Poco::Net::HTTPServerRequest &req, Poco::Net::HTTPServerResponse &resp) override
Definition NotFoundHandler.cpp:20