This commit is contained in:
Luis Ángel San Martín
2017-08-26 16:54:10 +02:00
parent 8b20014cc8
commit f149f314e0
105 changed files with 4145 additions and 2089 deletions

View File

@ -0,0 +1,20 @@
#ifndef READINGLISTSCONTROLLER_H
#define READINGLISTSCONTROLLER_H
#include "httprequest.h"
#include "httpresponse.h"
#include "httprequesthandler.h"
class ReadingListsController : public HttpRequestHandler {
Q_OBJECT
Q_DISABLE_COPY(ReadingListsController)
public:
ReadingListsController();
void service(HttpRequest& request, HttpResponse& response);
private:
void serviceContent(const int library, HttpResponse &response);
};
#endif // READINGLISTSCONTROLLER_H