Changeset 778 in ntrip for trunk/BNS/bns.h


Ignore:
Timestamp:
Apr 8, 2008, 9:57:37 AM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.h

    r770 r778  
    66
    77#include "bnseph.h"
     8
     9class t_ephPair {
     10 public:
     11  t_ephPair() {
     12    eph    = 0;
     13    oldEph = 0;
     14  }
     15
     16  ~t_ephPair() {
     17    delete eph;
     18    delete oldEph;
     19  }
     20
     21  gpsEph* eph;
     22  gpsEph* oldEph;
     23};
    824
    925class t_bns : public QThread {
     
    1935 
    2036 private slots:
     37  void slotNewEph(gpsEph* ep);
    2138  void slotNewConnection();
    2239  void slotMessage(const QByteArray msg);
     
    2643  void deleteBnsEph();
    2744  void openCaster();
    28   QTcpServer* _clkServer;
    29   QTcpSocket* _clkSocket;
    30   QTcpSocket* _outSocket;
    31   t_bnseph*   _bnseph;
    32   QMutex      _mutex;
     45  QTcpServer*               _clkServer;
     46  QTcpSocket*               _clkSocket;
     47  QTcpSocket*               _outSocket;
     48  t_bnseph*                 _bnseph;
     49  QMutex                    _mutex;
     50  QMap<QString, t_ephPair*> _ephList;
    3351};
    3452#endif
Note: See TracChangeset for help on using the changeset viewer.