2023-04-02 21:39:50 +02:00
|
|
|
#ifndef COMMANDTAG_H
|
|
|
|
#define COMMANDTAG_H
|
|
|
|
#include "command.h"
|
|
|
|
|
|
|
|
class CommandTag : public Command
|
|
|
|
{
|
2023-05-07 16:51:42 +02:00
|
|
|
protected:
|
|
|
|
bool ensureAbsolutePaths(const QVector<QString> &paths, QVector<QString> &absolutePaths);
|
|
|
|
|
2023-04-02 21:39:50 +02:00
|
|
|
public:
|
|
|
|
using Command::Command;
|
|
|
|
|
|
|
|
int handle(QStringList arguments) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COMMANDTAG_H
|