Changeset 4574 in ntrip
- Timestamp:
- Aug 29, 2012, 12:35:35 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r4573 r4574 41 41 #include <iostream> 42 42 #include <iomanip> 43 44 #include <qwt_plot.h> 45 #include <qwt_plot_curve.h> 46 43 47 #include "reqcanalyze.h" 44 48 #include "bncapp.h" … … 509 513 QMap<QString, QVector<int> >* prnAvail){ 510 514 511 qDebug() << fileName << title; 512 513 QMapIterator<QString, QVector<int> > it(*prnAvail); 514 while (it.hasNext()) { 515 it.next(); 516 const QString& prn = it.key(); 517 const QVector<int>& epochs = it.value(); 518 qDebug() << prn << epochs.size(); 519 } 520 521 bncApp* app = dynamic_cast<bncApp*>(qApp); 522 if (app->GUIenabled()) { 515 if (dynamic_cast<bncApp*>(qApp)->GUIenabled()) { 516 517 QwtPlot* plot = new QwtPlot(); 518 519 int iC = 0; 520 QMapIterator<QString, QVector<int> > it(*prnAvail); 521 while (it.hasNext()) { 522 it.next(); 523 const QString& prn = it.key(); 524 const QVector<int>& epochs = it.value(); 525 } 523 526 524 527 QVector<QWidget*> plots; 525 528 plots << plot; 526 529 t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0); 527 528 530 graphWin->show(); 529 531
Note:
See TracChangeset
for help on using the changeset viewer.