Ignore:
Timestamp:
Sep 13, 2013, 11:06:43 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5446 r5447  
    1818  class t_monitor;
    1919}
     20
     21namespace GnssCenter {
    2022
    2123class t_thriftResult {
     
    3941class t_thriftHandler : public RtnetDataIf {
    4042 public:
    41   t_thriftHandler(GnssCenter::t_monitor* parent);
     43  t_thriftHandler(t_monitor* parent);
    4244  ~t_thriftHandler();
    4345  void startDataStream() {}
     
    5860    double _z;
    5961  };
    60   GnssCenter::t_monitor*              _parent;
     62  t_monitor*              _parent;
    6163  std::map<std::string, t_stationCrd> _stationCrd;
    6264};
     
    6466class t_thriftClient : public QThread {
    6567 public:
    66   t_thriftClient(GnssCenter::t_monitor* parent);
     68  t_thriftClient(t_monitor* parent);
    6769  ~t_thriftClient();
    6870  virtual void run();
     
    7375
    7476 private:
    75   QMutex                 _mutex;
    76   GnssCenter::t_monitor* _parent;
    77   bool                   _stop;
     77  QMutex     _mutex;
     78  t_monitor* _parent;
     79  bool       _stop;
    7880};
    7981
     82} // namespace GnssCenter
     83
    8084#endif
Note: See TracChangeset for help on using the changeset viewer.