mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
23 lines
414 B
C
23 lines
414 B
C
|
|
||
|
#ifndef STRINGSASYNCTASK_H
|
||
|
#define STRINGSASYNCTASK_H
|
||
|
|
||
|
#include "utils/AsyncTask.h"
|
||
|
#include "Cutter.h"
|
||
|
|
||
|
class StringsTask : public AsyncTask
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
QString getTitle() override { return tr("Searching for Strings"); }
|
||
|
|
||
|
signals:
|
||
|
void stringSearchFinished(const QList<StringDescription> &strings);
|
||
|
|
||
|
protected:
|
||
|
void runTask() override;
|
||
|
};
|
||
|
|
||
|
#endif //STRINGSASYNCTASK_H
|