Changeset 5731 in ntrip for trunk/BNC/src/PPP/pppThread.h


Ignore:
Timestamp:
Jul 31, 2014, 4:16:10 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.h

    r5723 r5731  
    1010namespace BNC {
    1111
    12 class t_pppThread : public QThread {
     12class t_pppRun : public QObject {
    1313 Q_OBJECT
    14 
    1514 public:
    16   t_pppThread(const t_options* opt);
    17   ~t_pppThread();
    18   virtual void run();
     15  t_pppRun(const t_options& opt);
     16  ~t_pppRun();
    1917
    2018 public slots:
     
    3028};
    3129
     30class t_pppThread : public QThread {
     31 public:
     32  t_pppThread(const t_options* opt);
     33  ~t_pppThread();
     34  virtual void run();
     35
     36 private:
     37  t_options _opt;
     38  t_pppRun* _pppRun;
     39};
     40
    3241}
    3342
Note: See TracChangeset for help on using the changeset viewer.