Ignore:
Timestamp:
Sep 12, 2013, 4:59:56 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5416 r5424  
    3636};
    3737
    38 class t_thriftClient : public QThread, public RtnetDataIf {
     38
     39class t_thriftHandler : public RtnetDataIf {
    3940 public:
    40   t_thriftClient(GnssCenter::t_map_stations* parent);
    41   ~t_thriftClient();
    42   virtual void run();
    43   void stop() {_stop = true;}
    44 
     41  t_thriftHandler(GnssCenter::t_map_stations* parent);
     42  ~t_thriftHandler();
    4543  void startDataStream() {}
    4644  void registerRtnet(const RtnetInformation&) {}
     
    5351  void handleSatelliteClock(const std::vector<SatelliteClock>&) {}
    5452  void handleEpochResults(const RtnetEpoch& epoch);
    55 
    5653 private:
    57 
    5854  class t_stationCrd {
    5955   public:
     
    6258    double _z;
    6359  };
    64 
    6560  GnssCenter::t_map_stations*         _parent;
    6661  std::map<std::string, t_stationCrd> _stationCrd;
    67   bool                                _stop;
     62};
     63
     64class t_thriftClient : public QThread {
     65 public:
     66  t_thriftClient(GnssCenter::t_map_stations* parent);
     67  ~t_thriftClient();
     68  virtual void run();
     69  void stop() {_stop = true;}
     70
     71 private:
     72  GnssCenter::t_map_stations* _parent;
     73  bool                        _stop;
    6874};
    6975
Note: See TracChangeset for help on using the changeset viewer.