Index: trunk/BNC/test_bnc_qt.cpp
===================================================================
--- trunk/BNC/test_bnc_qt.cpp	(revision 2257)
+++ trunk/BNC/test_bnc_qt.cpp	(revision 2259)
@@ -57,7 +57,16 @@
 int main(int /* argc */, char** /* argv */) {
 
+  int    year  = 2010;
+  int    month =    1;
+  int    day   =   10;
+  int    hour  =   12;
+  int    min   =   30;
+  double sec   =  0.0;
+
   bncTime tt;
-  tt.set(2010, 1, 10, 10, 30, 0.0);
+  tt.set(year, month, day, hour, min, sec);
   cout << tt.timestr() << " Moscow time (UTC + 3h)" << endl;
+  cout << "GPS-UTC: " << gnumleap(year, month, day) << endl;
+
 
   int week = tt.gpsw();
Index: trunk/BNC/test_bnc_qt.pro
===================================================================
--- trunk/BNC/test_bnc_qt.pro	(revision 2257)
+++ trunk/BNC/test_bnc_qt.pro	(revision 2259)
@@ -3,4 +3,6 @@
 
 CONFIG += release console
+
+INCLUDEPATH = . ./RTCM3
 
 HEADERS = bnctime.h   RTCM3/rtcm3torinex.h RTCM3/timeutils.h
