source: ntrip/trunk/GnssCenter/inpedit/inpedit.cpp@ 5088

Last change on this file since 5088 was 5088, checked in by mervart, 11 years ago
File size: 926 bytes
Line 
1
2/* -------------------------------------------------------------------------
3 * RTNet GUI
4 * -------------------------------------------------------------------------
5 *
6 * Class: t_inpEdit
7 *
8 * Purpose: RTNet Input File
9 *
10 * Author: L. Mervart
11 *
12 * Created: 05-Jan-2013
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
18#include "inpedit.h"
19#include "keyword.h"
20#include "panel.h"
21
22using namespace std;
23using namespace GnssCenter;
24
25Q_EXPORT_PLUGIN2(gnsscenter_inpedit, GnssCenter::t_inpEditFactory)
26
27// Constructor
28////////////////////////////////////////////////////////////////////////////
29t_inpEdit::t_inpEdit() : QMainWindow() {
30 _tabWidget = new t_tabWidget();
31 setCentralWidget(_tabWidget);
32 _tabWidget->setVisible(true);
33}
34
35// Destructor
36////////////////////////////////////////////////////////////////////////////
37t_inpEdit::~t_inpEdit() {
38}
Note: See TracBrowser for help on using the repository browser.