Index: trunk/GnssCenter/monitor/dlgconf.cpp
===================================================================
--- trunk/GnssCenter/monitor/dlgconf.cpp	(revision 5454)
+++ trunk/GnssCenter/monitor/dlgconf.cpp	(revision 5454)
@@ -0,0 +1,33 @@
+
+/* -------------------------------------------------------------------------
+ * RTNet DlgConf
+ * -------------------------------------------------------------------------
+ *
+ * Class:      t_dlgConf
+ *
+ * Purpose:    Set configuration
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    15-Sep-2013
+ *
+ * Changes:
+ *
+ * -----------------------------------------------------------------------*/
+
+#include "dlgconf.h"
+#include "settings.h"
+
+using namespace std;
+using namespace GnssCenter;
+
+// Constructor
+/////////////////////////////////////////////////////////////////////////////
+t_dlgConf::t_dlgConf() : QDialog() {
+}
+
+// Destructor
+/////////////////////////////////////////////////////////////////////////////
+t_dlgConf::~t_dlgConf() {
+}
+
Index: trunk/GnssCenter/monitor/dlgconf.h
===================================================================
--- trunk/GnssCenter/monitor/dlgconf.h	(revision 5454)
+++ trunk/GnssCenter/monitor/dlgconf.h	(revision 5454)
@@ -0,0 +1,18 @@
+#ifndef GnssCenter_DLGCONF_H
+#define GnssCenter_DLGCONF_H
+
+#include <QtGui>
+
+namespace GnssCenter {
+
+class t_dlgConf : public QDialog {
+ Q_OBJECT
+ public:
+  t_dlgConf();
+  ~t_dlgConf();
+ private:
+};
+
+} // namespace GnssCenter
+
+#endif
Index: trunk/GnssCenter/monitor/monitor.pro
===================================================================
--- trunk/GnssCenter/monitor/monitor.pro	(revision 5453)
+++ trunk/GnssCenter/monitor/monitor.pro	(revision 5454)
@@ -25,4 +25,5 @@
 
 HEADERS   = monitor.h      \
+            dlgconf.h      \
             utils.h        \
             const.h        \
@@ -31,4 +32,5 @@
 
 SOURCES   = monitor.cpp      \
+            dlgconf.cpp      \
             utils.cpp        \
             const.cpp        \
