Wireshark  4.3.0
The Wireshark network protocol analyzer
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
22 public:
23  explicit RangeSyntaxLineEdit(QWidget *parent = 0);
24  void setMaxRange(unsigned int max);
25 
26 public slots:
27  void checkRange(QString range);
28 
29 private:
30  unsigned int maxRange_;
31 };
32 
33 #endif // RANGE_SYNTAX_LINEEDIT_H
Definition: range_syntax_lineedit.h:20
Definition: syntax_line_edit.h:23