source: ntrip/trunk/BNS/bnseph.cpp@ 758

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

* empty log message *

File size: 902 bytes
Line 
1/* -------------------------------------------------------------------------
2 * BKG NTRIP Server
3 * -------------------------------------------------------------------------
4 *
5 * Class: bnseph
6 *
7 * Purpose: Retrieve broadcast ephemeris from BNC
8 *
9 * Author: L. Mervart
10 *
11 * Created: 29-Mar-2008
12 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include "bnseph.h"
18
19using namespace std;
20
21// Constructor
22////////////////////////////////////////////////////////////////////////////
23t_bnseph::t_bnseph(QObject* parent) : QThread(parent) {
24}
25
26// Destructor
27////////////////////////////////////////////////////////////////////////////
28t_bnseph::~t_bnseph() {
29}
30
31// Start
32////////////////////////////////////////////////////////////////////////////
33void t_bnseph::run() {
34 emit(newMessage("============ Start bnseph ============"));
35}
36
Note: See TracBrowser for help on using the repository browser.