Wireshark  4.3.0
The Wireshark network protocol analyzer
export_object_action.h
Go to the documentation of this file.
1 
10 #ifndef EXPORTOBJECTACTION_H
11 #define EXPORTOBJECTACTION_H
12 
13 #include "config.h"
14 
15 #include <glib.h>
16 #include <epan/packet_info.h>
17 #include <epan/export_object.h>
18 
19 #include <QAction>
20 
21 #include <ui/qt/capture_file.h>
22 
23 // Actions for "Export Objects" menu items.
24 
25 class ExportObjectAction : public QAction
26 {
27  Q_OBJECT
28 public:
29  ExportObjectAction(QObject *parent, register_eo_t *eo = NULL);
30 
31  register_eo_t* exportObject() {return eo_;}
32 
33 public slots:
34  void captureFileEvent(CaptureEvent e);
35 
36 private:
37  register_eo_t *eo_;
38 };
39 
40 #endif // EXPORTOBJECTACTION_H
Definition: capture_event.h:20
Definition: export_object_action.h:26
Definition: export_object.c:19