14 rindas
252 B
C++
14 rindas
252 B
C++
#ifndef HANDLERSEARCH_H
|
|
#define HANDLERSEARCH_H
|
|
#include <vector>
|
|
#include "handler.h"
|
|
class HandlerSearch : public Handler
|
|
{
|
|
public:
|
|
HandlerSearch();
|
|
using Handler::Handler;
|
|
Response handle(const Request &r) override;
|
|
};
|
|
|
|
#endif // HANDLERSEARCH_H
|