Index: trunk/GnssCenter/thrift/test_rtnet/rtnetThriftClient.cpp
===================================================================
--- trunk/GnssCenter/thrift/test_rtnet/rtnetThriftClient.cpp	(revision 5391)
+++ trunk/GnssCenter/thrift/test_rtnet/rtnetThriftClient.cpp	(revision 5392)
@@ -18,12 +18,16 @@
 using namespace boost;
 
+// Handler Class Definition
+//////////////////////////////////////////////////////////////////////////////
 class RtnetClientHandler : public RtnetDataIf {
  public:
   RtnetClientHandler() {}
   ~RtnetClientHandler() {}
+
   void startDataStream() {}
   void registerRtnet(const RtnetInformation& info) {}
   void handleZDAmb(const vector<ZDAmb>& ambList) {}
   void handleDDAmbresBaselines(const vector<DDAmbresBaseline>& ambList) {}
+  void handleSatelliteXYZ(const vector< SatelliteXYZ>& svXYZList);
   void handleStationInfo(const vector<StationInfo>& stationList) {}
   void handleStationAuxInfo(const vector<StationAuxInfo>& stationAuxList) {}
@@ -31,21 +35,8 @@
   void handleSatelliteClock(const vector<SatelliteClock>& svList) {}
   void handleEpochResults(const RtnetEpoch& epoch) {}
-
-  void handleSatelliteXYZ(const vector< SatelliteXYZ>& svXYZList);
 };
 
-void RtnetClientHandler::
-handleSatelliteXYZ(const vector<SatelliteXYZ>& svXYZList) {
-  cout.setf(ios::fixed);
-  for (unsigned ii = 0; ii < svXYZList.size(); ii++) {
-    const SatelliteXYZ& sat = svXYZList[ii];
-    cout << unsigned(sat.ID) << ' '
-         << setprecision(3) << sat.xyz.x << ' '
-         << setprecision(3) << sat.xyz.y << ' '
-         << setprecision(3) << sat.xyz.z << endl;
-  }
-  cout << endl;
-}
-
+// Program
+//////////////////////////////////////////////////////////////////////////////
 int main(int argc, char **argv) {
 
@@ -74,2 +65,18 @@
   return 0;
 }
+
+// Handle Satellite Positions
+//////////////////////////////////////////////////////////////////////////////
+void RtnetClientHandler::
+handleSatelliteXYZ(const vector<SatelliteXYZ>& svXYZList) {
+  cout.setf(ios::fixed);
+  for (unsigned ii = 0; ii < svXYZList.size(); ii++) {
+    const SatelliteXYZ& sat = svXYZList[ii];
+    cout << unsigned(sat.ID) << ' '
+         << setprecision(3) << sat.xyz.x << ' '
+         << setprecision(3) << sat.xyz.y << ' '
+         << setprecision(3) << sat.xyz.z << endl;
+  }
+  cout << endl;
+}
+
