Ignore:
Timestamp:
Sep 14, 2013, 3:28:51 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5447 r5452  
    44#include <string>
    55#include <map>
     6#include <QString>
    67#include <QThread>
    78#include <QMutex>
     
    6667class t_thriftClient : public QThread {
    6768 public:
    68   t_thriftClient(t_monitor* parent);
     69  t_thriftClient(t_monitor* parent, const QString& host, int port);
    6970  ~t_thriftClient();
    7071  virtual void run();
     
    7576
    7677 private:
    77   QMutex     _mutex;
    78   t_monitor* _parent;
    79   bool       _stop;
     78  QMutex      _mutex;
     79  std::string _host;
     80  int         _port;
     81  t_monitor*  _parent;
     82  bool        _stop;
    8083};
    8184
Note: See TracChangeset for help on using the changeset viewer.