Index: trunk/BNC/src/satObs.cpp
===================================================================
--- trunk/BNC/src/satObs.cpp	(revision 6465)
+++ trunk/BNC/src/satObs.cpp	(revision 6466)
@@ -7,9 +7,7 @@
 using namespace std;
 
-// 
+// Constructor
 ////////////////////////////////////////////////////////////////////////////
-void t_clkCorr::reset() {
-  _prn.set(' ', 0);
-  _time.reset();
+t_clkCorr::t_clkCorr() {
   _iod        = 0;
   _dClk       = 0.0;
@@ -47,13 +45,11 @@
 }
 
-// 
+// Constructor
 ////////////////////////////////////////////////////////////////////////////
-void t_orbCorr::reset() {
-  _prn.set(' ', 0);
-  _time.reset();
+t_orbCorr::t_orbCorr() {
+  _iod    = 0;
+  _system = 'R';
   _xr.ReSize(3);    _xr    = 0.0;
   _dotXr.ReSize(3); _dotXr = 0.0;
-  _iod    = 0;
-  _system = 'R';
 }
 
Index: trunk/BNC/src/satObs.h
===================================================================
--- trunk/BNC/src/satObs.h	(revision 6465)
+++ trunk/BNC/src/satObs.h	(revision 6466)
@@ -61,8 +61,7 @@
 class t_orbCorr {
  public:
-  t_orbCorr() {reset();}
+  t_orbCorr();
   static void writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList);
   static void readEpoch(const QStringList& lines, QList<t_orbCorr>& corrList);
-  void reset();
   std::string    _staID;
   t_prn          _prn;
@@ -76,8 +75,7 @@
 class t_clkCorr {
  public:
-  t_clkCorr() {reset();}
+  t_clkCorr();
   static void writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList);
   static void readEpoch(const QStringList& lines, QList<t_clkCorr>& corrList);
-  void reset();
   std::string    _staID;
   t_prn          _prn;
