Changeset 3579 in ntrip
- Timestamp:
- Dec 26, 2011, 10:30:36 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/GPSS/hassDecoder.cpp
r3578 r3579 17 17 18 18 #include <iostream> 19 19 20 #include "hassDecoder.h" 21 #include "bncapp.h" 20 22 #include "bnctime.h" 21 23 #include "bncutils.h" 24 #include "bncsettings.h" 22 25 #include "RTCM3/RTCM3coDecoder.h" 23 26 … … 27 30 //////////////////////////////////////////////////////////////////////////// 28 31 hassDecoder::hassDecoder(const QString& staID) { 32 _staID = staID; 33 34 // File Output 35 // ----------- 36 bncSettings settings; 37 QString path = settings.value("corrPath").toString(); 38 if (!path.isEmpty()) { 39 expandEnvVar(path); 40 if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) { 41 path += QDir::separator(); 42 } 43 _fileNameSkl = path + staID; 44 } 45 _out = 0; 29 46 _GPSweeks = -1.0; 47 48 connect(this, SIGNAL(newCorrLine(QString, QString, long)), 49 (bncApp*) qApp, SLOT(slotNewCorrLine(QString, QString, long))); 30 50 } 31 51 … … 33 53 //////////////////////////////////////////////////////////////////////////// 34 54 hassDecoder::~hassDecoder() { 55 delete _out; 35 56 } 36 57
Note:
See TracChangeset
for help on using the changeset viewer.