- Timestamp:
- Jul 26, 2008, 9:39:22 AM (16 years ago)
- Location:
- trunk/BNC/RTCM3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3Decoder.cpp
r939 r970 61 61 // Constructor 62 62 //////////////////////////////////////////////////////////////////////////// 63 RTCM3Decoder::RTCM3Decoder(const QString& fileName) : GPSDecoder() {63 RTCM3Decoder::RTCM3Decoder(const QString& staID) : GPSDecoder() { 64 64 65 65 const int LEAPSECONDS = 14; /* only needed for approx. time */ … … 82 82 // Sub-Decoder for Clock and Orbit Corrections 83 83 // ------------------------------------------- 84 _coDecoder = new RTCM3coDecoder( fileName);84 _coDecoder = new RTCM3coDecoder(staID); 85 85 } 86 86 -
trunk/BNC/RTCM3/RTCM3coDecoder.cpp
r938 r970 51 51 // Constructor 52 52 //////////////////////////////////////////////////////////////////////////// 53 RTCM3coDecoder::RTCM3coDecoder(const QString& fileName) { 53 RTCM3coDecoder::RTCM3coDecoder(const QString& staID) { 54 55 _staID = staID; 54 56 55 57 // File Output … … 62 64 path += QDir::separator(); 63 65 } 64 _fileNameSkl = path + fileName;66 _fileNameSkl = path + staID; 65 67 } 66 68 _out = 0; -
trunk/BNC/RTCM3/RTCM3coDecoder.h
r936 r970 40 40 Q_OBJECT 41 41 public: 42 RTCM3coDecoder(const QString& fileName);42 RTCM3coDecoder(const QString& staID); 43 43 virtual ~RTCM3coDecoder(); 44 44 virtual t_irc Decode(char* buffer = 0, int bufLen = 0); … … 53 53 int _port; 54 54 std::ofstream* _out; 55 QString _staID; 55 56 QString _fileNameSkl; 56 57 QString _fileName;
Note:
See TracChangeset
for help on using the changeset viewer.