Index: /trunk/BNC/src/rinex/graphwin.cpp
===================================================================
--- /trunk/BNC/src/rinex/graphwin.cpp	(revision 4300)
+++ /trunk/BNC/src/rinex/graphwin.cpp	(revision 4301)
@@ -42,4 +42,5 @@
 
 #include "graphwin.h"
+#include "polarplot.h"
 
 using namespace std;
@@ -54,4 +55,6 @@
   int ww = QFontMetrics(font()).width('w');
 
+  _polarPlot = new t_polarPlot(this);
+
   // Dialog Layout
   // -------------
@@ -63,4 +66,5 @@
 
   QVBoxLayout* mainLayout = new QVBoxLayout(this);
+  mainLayout->addWidget(_polarPlot);
   mainLayout->addLayout(buttonLayout);
 
Index: /trunk/BNC/src/rinex/graphwin.h
===================================================================
--- /trunk/BNC/src/rinex/graphwin.h	(revision 4300)
+++ /trunk/BNC/src/rinex/graphwin.h	(revision 4301)
@@ -29,4 +29,6 @@
 #include <QtGui>
 
+class t_polarPlot;
+
 class t_graphWin : public QDialog {
 
@@ -46,5 +48,6 @@
 
   private:
-   QPushButton*   _buttonOK;
+   QPushButton* _buttonOK;
+   t_polarPlot* _polarPlot;
 };
 
Index: /trunk/BNC/src/src.pro
===================================================================
--- /trunk/BNC/src/src.pro	(revision 4300)
+++ /trunk/BNC/src/src.pro	(revision 4301)
@@ -33,9 +33,10 @@
 # Include Path
 # ------------
-INCLUDEPATH = . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex
+INCLUDEPATH = . ../newmat ./RTCM3 ./RTCM3/clock_and_orbit ./RTCM3/rtcm3torinex \
+              ../qwt ../qwtpolar
 
 # Additional Libraries
 # --------------------
-unix:LIBS  += -L../newmat -lnewmat
+unix:LIBS  += -L../newmat -lnewmat -L../qwt -L../qwtpolar -lqwtpolar -lqwt
 win32:LIBS += -L../newmat/release -lnewmat
 
@@ -111,9 +112,9 @@
              rinex/rnxnavfile.h       rinex/corrfile.h     \
              rinex/reqcedit.h         rinex/reqcanalyze.h  \
-             rinex/graphwin.h
+             rinex/graphwin.h         rinex/polarplot.h 
   SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \
              rinex/rnxnavfile.cpp     rinex/corrfile.cpp   \
              rinex/reqcedit.cpp       rinex/reqcanalyze.cpp \
-             rinex/graphwin.cpp
+             rinex/graphwin.cpp       rinex/polarplot.cpp
 }
 
