Changeset 3626 in ntrip for trunk/BNC/bncpostprocess.h


Ignore:
Timestamp:
Jan 22, 2012, 6:16:57 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpostprocess.h

    r3625 r3626  
    3131class t_postInput {
    3232 public:
    33   QString obsFileName;
    34   QString navFileName;
    35   QString corrFileName;
     33  QString    obsFileName;
     34  QString    navFileName;
     35  QString    corrFileName;
    3636};
    3737
    38 t_irc postProcessingInit(t_postInput& input);
    39 t_irc postProcessingRun(const t_postInput& input);
     38class t_postProcessing : public QThread {
     39Q_OBJECT
     40 
     41 public:
     42  t_postProcessing(QObject* parent);
     43
     44 protected:
     45  ~t_postProcessing();
     46
     47 signals:
     48  void finished();
     49   
     50 public:
     51  void terminate();
     52  virtual void run();
     53 
     54 private:
     55  t_postInput _input;
     56  bool        _isToBeDeleted;
     57};
    4058
    4159#endif
Note: See TracChangeset for help on using the changeset viewer.