Wireshark  4.3.0
The Wireshark network protocol analyzer
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 
17 class CaptureFilterSyntaxWorker : public QObject
18 {
19  Q_OBJECT
20 
21 public:
22  CaptureFilterSyntaxWorker(QObject *parent = 0) : QObject(parent) {}
23 
24 public slots:
25  void checkFilter(const QString filter);
26 
27 signals:
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