Ignore:
Timestamp:
Sep 10, 2013, 5:55:53 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/map_stations/thriftclient.h

    r5415 r5416  
    55#include <map>
    66#include <QThread>
    7 #include <QMetaType>
    87
    98#include <transport/TSocket.h>
     
    1413
    1514using namespace com::gpssolutions::rtnet;
     15
     16namespace GnssCenter {
     17  class t_map_stations;
     18}
    1619
    1720class t_thriftResult {
     
    3336};
    3437
    35 class t_thriftClient : public QThread, public com::gpssolutions::rtnet::RtnetDataIf {
    36  Q_OBJECT
     38class t_thriftClient : public QThread, public RtnetDataIf {
    3739 public:
    38   t_thriftClient();
     40  t_thriftClient(GnssCenter::t_map_stations* parent);
    3941  ~t_thriftClient();
    4042  virtual void run();
     
    4244
    4345  void startDataStream() {}
    44   void registerRtnet(const RtnetInformation& info) {}
    45   void handleZDAmb(const std::vector<ZDAmb>& ambList) {}
    46   void handleDDAmbresBaselines(const std::vector<DDAmbresBaseline>& ambList) {}
     46  void registerRtnet(const RtnetInformation&) {}
     47  void handleZDAmb(const std::vector<ZDAmb>&) {}
     48  void handleDDAmbresBaselines(const std::vector<DDAmbresBaseline>&) {}
    4749  void handleSatelliteXYZ(const std::vector<SatelliteXYZ>& svXYZList);
    4850  void handleStationInfo(const std::vector<StationInfo>& stationList);
    49   void handleStationAuxInfo(const std::vector<StationAuxInfo>& stationAuxList) {}
    50   void handleDGPSCorr(const std::vector<DGPSCorr>& dgpsList) {}
    51   void handleSatelliteClock(const std::vector<SatelliteClock>& svList) {}
     51  void handleStationAuxInfo(const std::vector<StationAuxInfo>&) {}
     52  void handleDGPSCorr(const std::vector<DGPSCorr>&) {}
     53  void handleSatelliteClock(const std::vector<SatelliteClock>&) {}
    5254  void handleEpochResults(const RtnetEpoch& epoch);
    53 
    54  signals:
    55   void newThriftResult(t_thriftResult);
    5655
    5756 private:
     
    6463  };
    6564
     65  GnssCenter::t_map_stations*         _parent;
    6666  std::map<std::string, t_stationCrd> _stationCrd;
    67   bool _stop;
     67  bool                                _stop;
    6868};
    6969
Note: See TracChangeset for help on using the changeset viewer.