Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
range_syntax_lineedit.h
Go to the documentation of this file.
1
12#ifndef RANGE_SYNTAX_LINEEDIT_H
13#define RANGE_SYNTAX_LINEEDIT_H
14
16
17#include <QWidget>
18
20{
21 Q_OBJECT
22public:
23 explicit RangeSyntaxLineEdit(QWidget *parent = 0);
24 void setMaxRange(unsigned int max);
25
26public slots:
27 void checkRange(QString range);
28
29private:
30 unsigned int maxRange_;
31};
32
33#endif // RANGE_SYNTAX_LINEEDIT_H
Definition range_syntax_lineedit.h:20
Definition syntax_line_edit.h:23