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