mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
25 lines
627 B
C++
25 lines
627 B
C++
#ifndef PAGE_REQUEST_MESSAGE_HANDLER_INCLUDED
|
|
#define PAGE_REQUEST_MESSAGE_HANDLER_INCLUDED
|
|
|
|
//#include "../model/Session.h"
|
|
#include "../lib/ErrorList.h"
|
|
#include "../lib/Profiler.h"
|
|
#include "Poco/Net/HTTPRequestHandler.h"
|
|
|
|
|
|
|
|
class PageRequestMessagedHandler : public Poco::Net::HTTPRequestHandler, public ErrorList
|
|
{
|
|
public:
|
|
PageRequestMessagedHandler() {}
|
|
|
|
inline void setProfiler(Profiler profiler) { mTimeProfiler = profiler; }
|
|
//Poco::Net::HTTPRequestHandler* createRequestHandler(const Poco::Net::HTTPServerRequest& request);
|
|
|
|
protected:
|
|
Profiler mTimeProfiler;
|
|
};
|
|
|
|
|
|
#endif // PAGE_REQUEST_MESSAGE_HANDLER_INCLUDED
|