17 #ifndef COM_BORA_SOFTWARE__BALAU_NETWORK_HTTP_SERVER_HTTP_WEB_APPS__FAILING_HTTP_WEB_APP 18 #define COM_BORA_SOFTWARE__BALAU_NETWORK_HTTP_SERVER_HTTP_WEB_APPS__FAILING_HTTP_WEB_APP 26 namespace Network::Http::HttpWebApps {
28 class FailingHttpWebApp :
public HttpWebApp {
29 public:
void handleGetRequest(HttpSession & session,
31 std::map<std::string, std::string> & variables)
override;
33 public:
void handleHeadRequest(HttpSession & session,
35 std::map<std::string, std::string> & variables)
override;
37 public:
void handlePostRequest(HttpSession & session,
39 std::map<std::string, std::string> & variables)
override;
46 #pragma clang diagnostic pop 48 #endif // COM_BORA_SOFTWARE__BALAU_NETWORK_HTTP_SERVER_HTTP_WEB_APPS__FAILING_HTTP_WEB_APP The root Balau namespace.
Definition: ApplicationConfiguration.hpp:23
Abstract base class of HTTP web application handlers.
Request< StringBody > StringRequest
A request with a string body.
Definition: NetworkTypes.hpp:267