Index: trunk/BNC/upload/bncrtnetuploadcaster.cpp
===================================================================
--- trunk/BNC/upload/bncrtnetuploadcaster.cpp	(revision 3260)
+++ trunk/BNC/upload/bncrtnetuploadcaster.cpp	(revision 3272)
@@ -42,8 +42,12 @@
   _ephUser = new bncEphUser();
 
+  bncSettings settings;
+  QString     intr  = settings.value("uploadIntr").toString();
+  int         sampl = settings.value("uploadSampl").toInt();
+
   // Raw Output
   // ----------
   if (!outFileName.isEmpty()) {
-    _outFile = new bncoutf(outFileName, "", 0);
+    _outFile = new bncoutf(outFileName, intr, sampl);
   }
   else {
@@ -54,5 +58,5 @@
   // ------------
   if (!rnxFileName.isEmpty()) {
-    _rnx = new bncClockRinex(rnxFileName, "", 0);
+    _rnx = new bncClockRinex(rnxFileName, intr, sampl);
   }
   else {
@@ -63,5 +67,5 @@
   // ----------
   if (!sp3FileName.isEmpty()) {
-    _sp3 = new bncSP3(sp3FileName, "", 0);
+    _sp3 = new bncSP3(sp3FileName, intr, sampl);
   }
   else {
