summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-14 12:37:08 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-14 12:37:08 -0600
commit03c55a5b314a8281270e461b16c2954aaa762ec7 (patch)
treef02260a8754852fe3fb776f1578cdba9cb22b04e /ui/qt5/horizonwizard.hh
parente25f4a71ce293a7640f3a3def5094a3ad48a761f (diff)
downloadhorizon-03c55a5b314a8281270e461b16c2954aaa762ec7.tar.gz
horizon-03c55a5b314a8281270e461b16c2954aaa762ec7.tar.bz2
horizon-03c55a5b314a8281270e461b16c2954aaa762ec7.tar.xz
horizon-03c55a5b314a8281270e461b16c2954aaa762ec7.zip
Qt UI: Factor MAC address into base interface list
Diffstat (limited to 'ui/qt5/horizonwizard.hh')
-rw-r--r--ui/qt5/horizonwizard.hh7
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;
};