mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
16 lines
318 B
C++
16 lines
318 B
C++
#ifndef EmailOptInPage_INCLUDED
|
|
#define EmailOptInPage_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/HTTPRequestHandler.h"
|
|
|
|
|
|
class EmailOptInPage: public Poco::Net::HTTPRequestHandler
|
|
{
|
|
public:
|
|
void handleRequest(Poco::Net::HTTPServerRequest& request, Poco::Net::HTTPServerResponse& response);
|
|
};
|
|
|
|
|
|
#endif // EmailOptInPage_INCLUDED
|