Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
capture_filter_syntax_worker.h
Go to the documentation of this file.
1
10#ifndef CAPTURE_FILTER_SYNTAX_WORKER_H
11#define CAPTURE_FILTER_SYNTAX_WORKER_H
12
13#include <QMutex>
14#include <QObject>
15#include <QWaitCondition>
16
17class CaptureFilterSyntaxWorker : public QObject
18{
19 Q_OBJECT
20
21public:
22 CaptureFilterSyntaxWorker(QObject *parent = 0) : QObject(parent) {}
23
24public slots:
25 void checkFilter(const QString filter);
26
27signals:
28 void syntaxResult(QString filter, int state, QString err_msg);
29};
30
31#endif // CAPTURE_FILTER_SYNTAX_WORKER_H
Definition capture_filter_syntax_worker.h:18