Index: /trunk/BNC/bncnetqueryv2.cpp
===================================================================
--- /trunk/BNC/bncnetqueryv2.cpp	(revision 1388)
+++ /trunk/BNC/bncnetqueryv2.cpp	(revision 1389)
@@ -15,11 +15,5 @@
  * -----------------------------------------------------------------------*/
 
-#include <iostream>
-#include <iomanip>
-
 #include "bncnetqueryv2.h"
-#include "bncapp.h"
-
-using namespace std;
 
 #define BNCVERSION "1.7"
@@ -51,4 +45,6 @@
 }
 
+// End of Request
+////////////////////////////////////////////////////////////////////////////
 void bncNetQueryV2::slotFinished() {
   if (_status != error) {
@@ -57,14 +53,14 @@
 }
 
-// Start request, block till the next read (public)
+// Start request, block till the next read
 ////////////////////////////////////////////////////////////////////////////
 void bncNetQueryV2::startRequest(const QUrl& url, const QByteArray& gga) {
-  startRequest(url, gga, false);
+  startRequestPrivate(url, gga, false);
 }
 
-// Start request
+// Start Request (Private Method)
 ////////////////////////////////////////////////////////////////////////////
-void bncNetQueryV2::startRequest(const QUrl& url, const QByteArray& gga,
-                                 bool full) {
+void bncNetQueryV2::startRequestPrivate(const QUrl& url, const QByteArray& gga,
+                                        bool full) {
 
   _status = running;
@@ -91,4 +87,7 @@
            (urlLoc.userName() + ":" + urlLoc.password()).toAscii().toBase64());
   } 
+  if (!gga.isEmpty()) {
+    request.setRawHeader("Ntrip-GGA", gga);
+  }
   request.setRawHeader("Connection"   , "close");
 
@@ -112,5 +111,5 @@
   // Send Request
   // ------------
-  startRequest(url, "", true);
+  startRequestPrivate(url, "", true);
 
   // Wait Loop
Index: /trunk/BNC/bncnetqueryv2.h
===================================================================
--- /trunk/BNC/bncnetqueryv2.h	(revision 1388)
+++ /trunk/BNC/bncnetqueryv2.h	(revision 1389)
@@ -20,5 +20,5 @@
 
  private:
-  void startRequest(const QUrl& url, const QByteArray& gga, bool full);
+  void startRequestPrivate(const QUrl& url, const QByteArray& gga, bool full);
 
   QNetworkAccessManager* _manager;
