aboutsummaryrefslogtreecommitdiff
path: root/Core/CoreObject/serverinfostructure.h
diff options
context:
space:
mode:
Diffstat (limited to 'Core/CoreObject/serverinfostructure.h')
-rw-r--r--Core/CoreObject/serverinfostructure.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/Core/CoreObject/serverinfostructure.h b/Core/CoreObject/serverinfostructure.h
deleted file mode 100644
index 4f86adb..0000000
--- a/Core/CoreObject/serverinfostructure.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef SERVERINFOSTRUCTURE_H
-#define SERVERINFOSTRUCTURE_H
-
-#include <QDateTime>
-#include <QHostAddress>
-
-struct ServerInfo
-{
- // server address
- QHostAddress ip;
-
- // server port
- unsigned short port = 0;
-
- // gamename
- QString gamename = "";
-
- // date that the serverinfo was added or last updated
- qint64 time = QDateTime::currentSecsSinceEpoch();
-};
-
-// compare operator
-inline bool operator== (const ServerInfo serverInfo1, const ServerInfo serverInfo2)
-{
- // compare address, port and gamename. ignore time.
- return ( serverInfo1.ip.isEqual(serverInfo2.ip) and
- serverInfo1.port == serverInfo2.port and
- serverInfo1.gamename == serverInfo2.gamename );
-}
-
-#endif // SERVERINFOSTRUCTURE_H