mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
21 lines
540 B
C++
21 lines
540 B
C++
#ifndef FOLDERMETADATACONTROLLERV2_H
|
|
#define FOLDERMETADATACONTROLLERV2_H
|
|
|
|
#include "httprequest.h"
|
|
#include "httpresponse.h"
|
|
#include "httprequesthandler.h"
|
|
|
|
class FolderMetadataControllerV2 : public stefanfrings::HttpRequestHandler
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(FolderMetadataControllerV2)
|
|
public:
|
|
/** Constructor */
|
|
FolderMetadataControllerV2();
|
|
|
|
/** Generates the response */
|
|
void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
|
|
};
|
|
|
|
#endif // FOLDERMETADATACONTROLLERV2_H
|