antes de a?adir la clase Comic de YACReader a YACReaderLibrary

navegaci?n web con paginaci?n rudimentaria implementada
This commit is contained in:
Luis Ángel San Martín
2012-09-05 19:41:52 +02:00
parent 2afe3101b1
commit cbee662df4
33 changed files with 515 additions and 30 deletions

View File

@ -0,0 +1,20 @@
#ifndef FOLDERCONTROLLER_H
#define FOLDERCONTROLLER_H
#include "httprequest.h"
#include "httpresponse.h"
#include "httprequesthandler.h"
class FolderController : public HttpRequestHandler {
Q_OBJECT
Q_DISABLE_COPY(FolderController);
public:
/** Constructor */
FolderController();
/** Generates the response */
void service(HttpRequest& request, HttpResponse& response);
};
#endif // FOLDERCONTROLLER_H