Changeset 4300 in ntrip


Ignore:
Timestamp:
Jun 23, 2012, 11:16:18 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4270 r4300  
    4646#include "bncutils.h"
    4747#include "bncpostprocess.h"
     48#include "graphwin.h"
    4849
    4950using namespace std;
     
    6263
    6364  _currEpo = 0;
     65
     66  connect(this, SIGNAL(displayGraph()), this, SLOT(slotDisplayGraph()));
    6467}
    6568
     
    7578  delete _log;     _log     = 0;
    7679  delete _logFile; _logFile = 0;
     80}
     81
     82// 
     83////////////////////////////////////////////////////////////////////////////
     84void t_reqcAnalyze::slotDisplayGraph() {
     85  t_graphWin* graphWin = new t_graphWin(0);
     86  graphWin->show();
    7787}
    7888
     
    178188  }
    179189
     190  emit displayGraph();
     191
    180192  _log->flush();
    181193}
  • trunk/BNC/src/rinex/reqcanalyze.h

    r4268 r4300  
    4343 signals:
    4444  void finished();
     45  void displayGraph();
    4546   
    46  public slots:
     47 private slots:
     48  void slotDisplayGraph();
    4749
    4850 public:
Note: See TracChangeset for help on using the changeset viewer.