Changeset 748 in ntrip
- Timestamp:
- Mar 29, 2008, 3:53:40 PM (17 years ago)
- Location:
- trunk/BNS
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS
-
Property svn:ignore
set to
.cvsignore
.obj
.moc
Makefile
bns
qrc_bns.cpp
-
Property svn:ignore
set to
-
trunk/BNS/bns.pro
r747 r748 2 2 # Switch to debug configuration 3 3 # ----------------------------- 4 CONFIG= release5 ###CONFIG = debug4 ###CONFIG += release 5 ###CONFIG -= debug 6 6 7 7 RESOURCES += bns.qrc … … 21 21 release:MOC_DIR=.moc/release 22 22 23 HEADERS = 23 HEADERS = bnsapp.h bnswindow.h 24 24 25 SOURCES = bnsmain.cpp 25 SOURCES = bnsmain.cpp bnsapp.cpp bnswindow.cpp 26 26 27 27 RC_FILE = bns.rc -
trunk/BNS/bnsmain.cpp
r747 r748 15 15 * -----------------------------------------------------------------------*/ 16 16 17 #include <unistd.h> 18 #include <signal.h> 17 19 #include <QApplication> 20 #include <iostream> 21 22 #include "bnsapp.h" 23 #include "bnswindow.h" 18 24 19 25 using namespace std; … … 21 27 void catch_signal(int) { 22 28 cout << "Program Interrupted by Ctrl-C" << endl; 23 ((bn cApp*)qApp)->slotQuit();29 ((bnsApp*)qApp)->slotQuit(); 24 30 } 25 31 … … 48 54 } 49 55 50 bn cApp app(argc, argv, GUIenabled);56 bnsApp app(argc, argv, GUIenabled); 51 57 52 58 // Interactive Mode - open the main window … … 64 70 app.setWindowIcon(QPixmap(":ntrip-logo.png")); 65 71 66 bn cWindow* bncWin = new bncWindow();67 bn cWin->show();72 bnsWindow* bnsWin = new bnsWindow(); 73 bnsWin->show(); 68 74 } 69 75
Note:
See TracChangeset
for help on using the changeset viewer.