Index: trunk/BNC/src/PPP_SSR_I/pppClient.cpp
===================================================================
--- trunk/BNC/src/PPP_SSR_I/pppClient.cpp	(revision 7287)
+++ trunk/BNC/src/PPP_SSR_I/pppClient.cpp	(revision 7288)
@@ -35,5 +35,5 @@
  * Created:    21-Nov-2009
  *
- * Changes:    
+ * Changes:
  *
  * -----------------------------------------------------------------------*/
@@ -76,10 +76,10 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_pppClient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
-  
+
   // Convert and store observations
   // ------------------------------
   _epoData->clear();
   for (unsigned ii = 0; ii < satObs.size(); ii++) {
-    const t_satObs* obs     = satObs[ii]; 
+    const t_satObs* obs     = satObs[ii];
     t_prn prn = obs->_prn;
     if (prn.system() == 'E') {prn.setFlags(1);} // force I/NAV usage
@@ -145,5 +145,5 @@
     QString    prn     = it.key();
     t_satData* satData = it.value();
-    
+
     if (cmpToT(satData) != success) {
       delete satData;
@@ -211,5 +211,5 @@
   // ------------------------
   else if (satData->system() == 'R' && _opt->useSystem('R')) {
-    if (satData->P1 != 0.0 && satData->P2 != 0.0 && 
+    if (satData->P1 != 0.0 && satData->P2 != 0.0 &&
         satData->L1 != 0.0 && satData->L2 != 0.0 ) {
 
@@ -249,5 +249,5 @@
   // ------------------------
   else if (satData->system() == 'E' && _opt->useSystem('E')) {
-    if (satData->P1 != 0.0 && satData->P5 != 0.0 && 
+    if (satData->P1 != 0.0 && satData->P5 != 0.0 &&
         satData->L1 != 0.0 && satData->L5 != 0.0 ) {
       double f1 = t_CST::freq(t_frequency::E1, 0);
@@ -293,5 +293,5 @@
 }
 
-// 
+//
 ////////////////////////////////////////////////////////////////////////////
 void t_pppClient::putOrbCorrections(const std::vector<t_orbCorr*>& corr) {
@@ -309,5 +309,5 @@
 }
 
-// 
+//
 ////////////////////////////////////////////////////////////////////////////
 void t_pppClient::putClkCorrections(const std::vector<t_clkCorr*>& corr) {
@@ -325,5 +325,5 @@
 }
 
-// 
+//
 //////////////////////////////////////////////////////////////////////////////
 void t_pppClient::putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias) {
@@ -335,8 +335,13 @@
 //
 //////////////////////////////////////////////////////////////////////////////
+void t_pppClient::putPhaseBiases(const std::vector<t_satPhaseBias*>& /*satPhaseBias*/) {
+}
+
+//
+//////////////////////////////////////////////////////////////////////////////
 void t_pppClient::putTec(const t_vTec* /*vTec*/) {
 }
 
-// 
+//
 //////////////////////////////////////////////////////////////////////////////
 void t_pppClient::putEphemeris(const t_eph* eph) {
@@ -362,5 +367,5 @@
 // Satellite Position
 ////////////////////////////////////////////////////////////////////////////
-t_irc t_pppClient::getSatPos(const bncTime& tt, const QString& prn, 
+t_irc t_pppClient::getSatPos(const bncTime& tt, const QString& prn,
                               ColumnVector& xc, ColumnVector& vv) {
 
@@ -404,5 +409,5 @@
       satData->clk     = clkSat * t_CST::c;
       return success;
-    } 
+    }
   }
 
Index: trunk/BNC/src/PPP_SSR_I/pppClient.h
===================================================================
--- trunk/BNC/src/PPP_SSR_I/pppClient.h	(revision 7287)
+++ trunk/BNC/src/PPP_SSR_I/pppClient.h	(revision 7288)
@@ -38,5 +38,5 @@
 
 namespace BNC_PPP {
-  
+
 class t_pppClient : public interface_pppClient {
  public:
@@ -46,7 +46,8 @@
   void                putEphemeris(const t_eph* eph);
   void                putTec(const t_vTec* vTec);
-  void                putOrbCorrections(const std::vector<t_orbCorr*>& corr); 
-  void                putClkCorrections(const std::vector<t_clkCorr*>& corr); 
-  void                putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias);   
+  void                putOrbCorrections(const std::vector<t_orbCorr*>& corr);
+  void                putClkCorrections(const std::vector<t_clkCorr*>& corr);
+  void                putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias);
+  void                putPhaseBiases(const std::vector<t_satPhaseBias*>& satPhaseBias);
   std::ostringstream& log() {return *_log;}
   const t_pppOptions* opt() const {return _opt;}
@@ -61,5 +62,5 @@
   t_pppFilter*        _filter;
   t_pppUtils*         _pppUtils;
-  std::ostringstream* _log; 
+  std::ostringstream* _log;
 };
 
