qswiki/handlers/handlerallcategories.h

16 lines
272 B
C++

#ifndef HANDLERALLCATEGORIES_H
#define HANDLERALLCATEGORIES_H
#include "handler.h"
class HandlerAllCategories : public Handler
{
public:
HandlerAllCategories();
using Handler::Handler;
Response handle(const Request &r) override;
};
#endif // HANDLERALLCATEGORIES_H