2019-04-20 23:31:14 +02:00
|
|
|
#ifndef COMMANDSEARCH_H
|
|
|
|
#define COMMANDSEARCH_H
|
|
|
|
#include "command.h"
|
|
|
|
#include "../shared/sqlitesearch.h"
|
|
|
|
|
|
|
|
class CommandSearch : public Command
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Command::Command;
|
|
|
|
|
2019-04-22 22:00:40 +02:00
|
|
|
int handle(QStringList arguments) override;
|
2019-04-20 23:31:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COMMANDSEARCH_H
|