Changeset 4300 in ntrip
- Timestamp:
- Jun 23, 2012, 11:16:18 AM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r4270 r4300 46 46 #include "bncutils.h" 47 47 #include "bncpostprocess.h" 48 #include "graphwin.h" 48 49 49 50 using namespace std; … … 62 63 63 64 _currEpo = 0; 65 66 connect(this, SIGNAL(displayGraph()), this, SLOT(slotDisplayGraph())); 64 67 } 65 68 … … 75 78 delete _log; _log = 0; 76 79 delete _logFile; _logFile = 0; 80 } 81 82 // 83 //////////////////////////////////////////////////////////////////////////// 84 void t_reqcAnalyze::slotDisplayGraph() { 85 t_graphWin* graphWin = new t_graphWin(0); 86 graphWin->show(); 77 87 } 78 88 … … 178 188 } 179 189 190 emit displayGraph(); 191 180 192 _log->flush(); 181 193 } -
trunk/BNC/src/rinex/reqcanalyze.h
r4268 r4300 43 43 signals: 44 44 void finished(); 45 void displayGraph(); 45 46 46 public slots: 47 private slots: 48 void slotDisplayGraph(); 47 49 48 50 public:
Note:
See TracChangeset
for help on using the changeset viewer.