Changeset 5445 in ntrip for trunk/GnssCenter/monitor/monitor.h


Ignore:
Timestamp:
Sep 13, 2013, 10:41:49 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5443 r5445  
    1 #ifndef GnssCenter_MAP_STATIONS_H
    2 #define GnssCenter_MAP_STATIONS_H
     1#ifndef GnssCenter_MONITOR_H
     2#define GnssCenter_MONITOR_H
    33
    44#include <QtGui>
     
    1515namespace GnssCenter {
    1616
    17 class t_map_stations : public QMainWindow {
     17class t_monitor : public QMainWindow {
    1818 Q_OBJECT
    1919 public:
    20   t_map_stations();
    21   ~t_map_stations();
     20  t_monitor();
     21  ~t_monitor();
    2222
    2323  void putThriftResults(std::vector<t_thriftResult*>* results);
     
    3636};
    3737
    38 class t_map_stationsFactory : public QObject, public t_pluginFactoryInterface {
     38class t_monitorFactory : public QObject, public t_pluginFactoryInterface {
    3939 Q_OBJECT
    4040 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
    4141 public:
    42   virtual QWidget* create() {return new t_map_stations();}
    43   virtual QString getName() const {return QString("Map of Stations");}
     42  virtual QWidget* create() {return new t_monitor();}
     43  virtual QString getName() const {return QString("RTNet Monitor");}
    4444};
    4545
Note: See TracChangeset for help on using the changeset viewer.