source: ntrip/trunk/BNS/bnswindow.cpp@ 748

Last change on this file since 748 was 748, checked in by mervart, 16 years ago

* empty log message *

File size: 928 bytes
Line 
1
2/* -------------------------------------------------------------------------
3 * BKG NTRIP Client
4 * -------------------------------------------------------------------------
5 *
6 * Class: bnsWindow
7 *
8 * Purpose: This class implements the main application window.
9 *
10 * Author: L. Mervart
11 *
12 * Created: 29-Mar-2008
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
18#include "bnswindow.h"
19
20using namespace std;
21
22// Constructor
23////////////////////////////////////////////////////////////////////////////
24bnsWindow::bnsWindow() {
25}
26
27// Destructor
28////////////////////////////////////////////////////////////////////////////
29bnsWindow::~bnsWindow() {
30}
31
32// Close Application gracefully
33////////////////////////////////////////////////////////////////////////////
34void bnsWindow::closeEvent(QCloseEvent* event) {
35 QMainWindow::closeEvent(event);
36 delete this;
37}
38
Note: See TracBrowser for help on using the repository browser.