Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
compression_group_box.h
Go to the documentation of this file.
1
10#ifndef COMPRESSION_GROUP_BOX_H
11#define COMPRESSION_GROUP_BOX_H
12
13#include <config.h>
14
15#include <QGroupBox>
16
17#include <wiretap/wtap.h>
18
19class QButtonGroup;
20
24class CompressionGroupBox : public QGroupBox
25{
26 Q_OBJECT
27
28public:
29 explicit CompressionGroupBox(QWidget *parent = 0);
31 wtap_compression_type compressionType() const;
32 void setCompressionType(wtap_compression_type type);
33
34signals:
35 void stateChanged();
36
37private:
38 QButtonGroup *bg_;
39};
40
41#endif // COMPRESSION_GROUP_BOX_H
Definition compression_group_box.h:25