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:
authorBenjamin Jemlich <pcgod@users.sourceforge.net>2011-11-09 03:12:10 +0400
committerBenjamin Jemlich <pcgod@users.sourceforge.net>2011-11-09 03:12:10 +0400
commit07737a314c20e1669ad87174e5ac5938c9f4ef3d (patch)
treedd315879a102b2ff43cd66cc1addfb0d25fa883d /src/Net.h
parent37c2e27b8f276abac72c4a05aa5414f3a0fda5bd (diff)
Fix include guards and PCH includes
Diffstat (limited to 'src/Net.h')
-rw-r--r--src/Net.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Net.h b/src/Net.h
index 1468f37ff..c158045e4 100644
--- a/src/Net.h
+++ b/src/Net.h
@@ -28,15 +28,17 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef _NET_H
-#define _NET_H
+#ifndef NET_H_
+#define NET_H_
+
+#include <QtCore/QDateTime>
+#include <QtCore/QString>
+#include <QtNetwork/Q_IPV6ADDR>
#ifndef DEFAULT_MUMBLE_PORT
#define DEFAULT_MUMBLE_PORT 64738
#endif
-#include "murmur_pch.h"
-
struct HostAddress {
union {
Q_IPV6ADDR qip6;