Changeset 5456 in ntrip
- Timestamp:
- Sep 15, 2013, 10:03:43 AM (11 years ago)
- Location:
- trunk/GnssCenter/monitor
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/const.h
r5450 r5456 3 3 4 4 namespace GnssCenter { 5 6 static const char pluginName[] = "RTNet Monitor"; 5 7 6 8 class t_CST { -
trunk/GnssCenter/monitor/dlgconf.cpp
r5455 r5456 18 18 #include "dlgconf.h" 19 19 #include "settings.h" 20 #include "const.h" 20 21 21 22 using namespace std; … … 25 26 ///////////////////////////////////////////////////////////////////////////// 26 27 t_dlgConf::t_dlgConf(QWidget* parent) : QDialog(parent) { 28 29 t_settings settings(pluginName); 30 settings.setValue("host", "rtnet.rtcm-ntrip.org"); 31 settings.setValue("port", 7777); 32 settings.sync(); 33 27 34 } 28 35 -
trunk/GnssCenter/monitor/dlgconf.h
r5455 r5456 3 3 4 4 #include <QtGui> 5 #include "const.h" 5 6 6 7 namespace GnssCenter { -
trunk/GnssCenter/monitor/monitor.cpp
r5455 r5456 72 72 // ------------- 73 73 t_settings settings(pluginName); 74 settings.setValue("host", "rtnet.rtcm-ntrip.org");75 settings.setValue("port", 7777);76 settings.sync();77 74 78 75 // Thrift Client; -
trunk/GnssCenter/monitor/monitor.h
r5455 r5456 5 5 #include <QWhatsThis> 6 6 #include "plugininterface.h" 7 #include "const.h" 7 8 8 9 namespace GnssCenter { … … 13 14 14 15 namespace GnssCenter { 15 16 const static QString pluginName = "RTNet Monitor";17 16 18 17 class t_monitor : public QMainWindow {
Note:
See TracChangeset
for help on using the changeset viewer.