Index: trunk/BNC/src/PPP_free/bncmodel.cpp
===================================================================
--- trunk/BNC/src/PPP_free/bncmodel.cpp	(revision 6085)
+++ trunk/BNC/src/PPP_free/bncmodel.cpp	(revision 6086)
@@ -46,7 +46,4 @@
 #include "bncmodel.h"
 #include "pppClient.h"
-#include "bncpppclient.h"
-#include "bnccore.h"
-#include "bncpppclient.h"
 #include "bancroft.h"
 #include "bncutils.h"
@@ -152,5 +149,5 @@
 // Constructor
 ////////////////////////////////////////////////////////////////////////////
-bncModel::bncModel(bncPPPclient* pppClient) {
+bncModel::bncModel(t_pppClient* pppClient) {
 
   _pppClient = pppClient;
Index: trunk/BNC/src/PPP_free/bncmodel.h
===================================================================
--- trunk/BNC/src/PPP_free/bncmodel.h	(revision 6085)
+++ trunk/BNC/src/PPP_free/bncmodel.h	(revision 6086)
@@ -37,5 +37,5 @@
 namespace BNC_PPP {
 
-class bncPPPclient;
+class t_pppClient;
 class t_pppOptions;
 class t_epoData;
@@ -63,5 +63,5 @@
 class bncModel {
  public:
-  bncModel(bncPPPclient* pppClient);
+  bncModel(t_pppClient* pppClient);
   ~bncModel();
   t_irc update(t_epoData* epoData);
@@ -145,5 +145,5 @@
   };
 
-  bncPPPclient*         _pppClient;
+  t_pppClient*          _pppClient;
   const t_pppOptions*   _opt;
   bncTime               _time;
Index: trunk/BNC/src/PPP_free/pppClient.cpp
===================================================================
--- trunk/BNC/src/PPP_free/pppClient.cpp	(revision 6085)
+++ trunk/BNC/src/PPP_free/pppClient.cpp	(revision 6086)
@@ -43,11 +43,9 @@
 #include <sstream>
 
-#include "bncpppclient.h"
-#include "bnccore.h"
+#include "pppClient.h"
+#include "pppOptions.h"
 #include "bncutils.h"
 #include "bncconst.h"
 #include "bncmodel.h"
-#include "pppOptions.h"
-#include "pppClient.h"
 
 using namespace BNC_PPP;
@@ -69,7 +67,7 @@
 
   _opt       = new t_pppOptions(*opt);
-  _staID     = QByteArray(_opt->_roverName.c_str())
   _model     = new bncModel(this);
   _epoData   = new t_epoData();
+  _staID     = QByteArray(_opt->_roverName.c_str());
   PPP_CLIENT = this;
 }
@@ -78,18 +76,4 @@
 ////////////////////////////////////////////////////////////////////////////
 t_pppClient::~t_pppClient() {
-  _epoData->clear();
-
-  QMapIterator<QString, t_corr*> ic(_corr);
-  while (ic.hasNext()) {
-    ic.next();
-    delete ic.value();
-  }
-
-  QMapIterator<QString, t_bias*> ib(_bias);
-  while (ib.hasNext()) {
-    ib.next();
-    delete ib.value();
-  }
-
   delete _model;
   delete _epoData;
@@ -246,4 +230,9 @@
 // 
 //////////////////////////////////////////////////////////////////////////////
+void t_pppClient::putBiases(const std::vector<t_satBias*>& /* satBias */) {
+}
+
+// 
+//////////////////////////////////////////////////////////////////////////////
 void t_pppClient::putEphemeris(const t_eph* eph) {
   const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph);
