diff options
Diffstat (limited to 'ui/qt5/horizonwizard.hh')
-rw-r--r-- | ui/qt5/horizonwizard.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/qt5/horizonwizard.hh b/ui/qt5/horizonwizard.hh index d6f84cd..b999daf 100644 --- a/ui/qt5/horizonwizard.hh +++ b/ui/qt5/horizonwizard.hh @@ -58,10 +58,15 @@ public: Unknown }; + struct NetworkInterface { + NetworkInterfaceType type; + QString mac; + }; + HorizonWizard(QWidget *parent = nullptr); QShortcut *f1, *f3, *f5, *f8; - std::map<std::string, NetworkInterfaceType> interfaces; + std::map<std::string, NetworkInterface> interfaces; std::string chosen_auto_iface; }; |