Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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 <epan/packet_info.h>
16#include <epan/export_object.h>
17
18#include <QAction>
19
20#include <ui/qt/capture_file.h>
21
22// Actions for "Export Objects" menu items.
23
24class ExportObjectAction : public QAction
25{
26 Q_OBJECT
27public:
28 ExportObjectAction(QObject *parent, register_eo_t *eo = NULL);
29
30 register_eo_t* exportObject() {return eo_;}
31
32public slots:
33 void captureFileEvent(CaptureEvent e);
34
35private:
36 register_eo_t *eo_;
37};
38
39#endif // EXPORTOBJECTACTION_H
Definition capture_event.h:21
Definition export_object_action.h:25
Definition export_object.c:19