Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
filter_history_model.h
Go to the documentation of this file.
1
9
10#ifndef FILTER_HISTORY_MODEL_H
11#define FILTER_HISTORY_MODEL_H
12
13#include <QAbstractListModel>
14#include <QString>
15
29class FilterHistoryModel : public QAbstractListModel
30{
31 Q_OBJECT
32
33public:
34 explicit FilterHistoryModel(QObject *parent = nullptr);
35
42 virtual void addRecent(const QString &expression) = 0;
43};
44
45#endif // FILTER_HISTORY_MODEL_H
virtual void addRecent(const QString &expression)=0
Commits expression to the recent list.