2022-06-02 14:35:23 +02:00
|
|
|
#ifndef COMMANDLIST_H
|
|
|
|
#define COMMANDLIST_H
|
2019-09-22 16:13:13 +02:00
|
|
|
#include "command.h"
|
|
|
|
#include "../shared/sqlitesearch.h"
|
|
|
|
|
|
|
|
class CommandList : public Command
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Command::Command;
|
|
|
|
|
|
|
|
int handle(QStringList arguments) override;
|
|
|
|
};
|
|
|
|
|
2022-06-02 14:35:23 +02:00
|
|
|
#endif // COMMANDLIST_H
|