mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
38 lines
781 B
C++
38 lines
781 B
C++
/**
|
|
@file
|
|
@author Stefan Frings
|
|
*/
|
|
|
|
#ifndef REQUESTMAPPER_H
|
|
#define REQUESTMAPPER_H
|
|
|
|
#include "httprequesthandler.h"
|
|
|
|
/**
|
|
The request mapper dispatches incoming HTTP requests to controller classes
|
|
depending on the requested path.
|
|
*/
|
|
|
|
class RequestMapper : public HttpRequestHandler {
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(RequestMapper)
|
|
public:
|
|
|
|
/**
|
|
Constructor.
|
|
@param parent Parent object
|
|
*/
|
|
RequestMapper(QObject* parent=0);
|
|
|
|
/**
|
|
Dispatch a request to a controller.
|
|
@param request The received HTTP request
|
|
@param response Must be used to return the response
|
|
*/
|
|
void service(HttpRequest& request, HttpResponse& response);
|
|
void loadSession(HttpRequest & request, HttpResponse& response);
|
|
|
|
};
|
|
|
|
#endif // REQUESTMAPPER_H
|