| 32 | #include "ui_RemoteManager.h" |
| 33 | |
| 34 | struct RemoteConnect |
| 35 | { |
| 36 | RemoteConnect() {} |
| 37 | RemoteConnect(const QString &h, const QString &f, uint32_t i) : host(h), friendly(f), ident(i) {} |
| 38 | QString host; |
| 39 | QString friendly; |
| 40 | uint32_t ident = 0; |
| 41 | }; |
| 42 | |
| 43 | Q_DECLARE_METATYPE(RemoteConnect); |
| 44 |