Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/Net.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Net.h')
-rw-r--r--src/Net.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Net.h b/src/Net.h
index 64232db99..b4d5aab0d 100644
--- a/src/Net.h
+++ b/src/Net.h
@@ -61,8 +61,11 @@ struct Ban {
bool isValid() const;
bool operator < (const Ban &) const;
bool operator == (const Ban &) const;
+ QString toString() const;
};
+quint32 qHash(const Ban &);
+
#if Q_BYTE_ORDER == Q_BIG_ENDIAN
#define SWAP64(x) (x)
#else