mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
added a border to selected/mouseHover elements in the grid view
This commit is contained in:
37
YACReaderLibrary/server/requestmapper.h
Normal file
37
YACReaderLibrary/server/requestmapper.h
Normal file
@ -0,0 +1,37 @@
|
||||
/**
|
||||
@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
|
Reference in New Issue
Block a user