Let's make (git) history!

This commit is contained in:
2018-11-03 17:12:20 +01:00
commit 3bfebfe8a8
212 ha cambiato i file con 11970 aggiunte e 0 eliminazioni

Vedi File

@@ -0,0 +1,13 @@
#ifndef HANDLERCATEGORY_H
#define HANDLERCATEGORY_H
#include "handler.h"
class HandlerCategory : public Handler
{
public:
HandlerCategory();
using Handler::Handler;
Response handle(const Request &r) override;
};
#endif // HANDLERCATEGORY_H