Changeset 748 in ntrip


Ignore:
Timestamp:
Mar 29, 2008, 3:53:40 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

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
  • trunk/BNS/bns.pro

    r747 r748  
    22# Switch to debug configuration
    33# -----------------------------
    4 CONFIG = release
    5 ###CONFIG = debug
     4###CONFIG += release
     5###CONFIG -= debug
    66
    77RESOURCES += bns.qrc
     
    2121release:MOC_DIR=.moc/release
    2222
    23 HEADERS =
     23HEADERS =             bnsapp.h   bnswindow.h
    2424
    25 SOURCES = bnsmain.cpp
     25SOURCES = bnsmain.cpp bnsapp.cpp bnswindow.cpp
    2626
    2727RC_FILE = bns.rc
  • trunk/BNS/bnsmain.cpp

    r747 r748  
    1515 * -----------------------------------------------------------------------*/
    1616
     17#include <unistd.h>
     18#include <signal.h>
    1719#include <QApplication>
     20#include <iostream>
     21
     22#include "bnsapp.h"
     23#include "bnswindow.h"
    1824
    1925using namespace std;
     
    2127void catch_signal(int) {
    2228  cout << "Program Interrupted by Ctrl-C" << endl;
    23   ((bncApp*)qApp)->slotQuit();
     29  ((bnsApp*)qApp)->slotQuit();
    2430}
    2531
     
    4854  }
    4955
    50   bncApp app(argc, argv, GUIenabled);
     56  bnsApp app(argc, argv, GUIenabled);
    5157
    5258  // Interactive Mode - open the main window
     
    6470    app.setWindowIcon(QPixmap(":ntrip-logo.png"));
    6571
    66     bncWindow* bncWin = new bncWindow();
    67     bncWin->show();
     72    bnsWindow* bnsWin = new bnsWindow();
     73    bnsWin->show();
    6874  }
    6975
Note: See TracChangeset for help on using the changeset viewer.