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
RevLine 
[4823]1
2/* -------------------------------------------------------------------------
3 * RTNet GUI
4 * -------------------------------------------------------------------------
5 *
[5015]6 * Class: t_inpEdit
[4823]7 *
8 * Purpose: RTNet Input File
9 *
10 * Author: L. Mervart
11 *
12 * Created: 05-Jan-2013
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
[5015]18#include "inpedit.h"
[4855]19#include "keyword.h"
20#include "panel.h"
[4823]21
22using namespace std;
[5000]23using namespace GnssCenter;
[4823]24
[5051]25Q_EXPORT_PLUGIN2(gnsscenter_inpedit, GnssCenter::t_inpEditFactory)
[5017]26
[4823]27// Constructor
28////////////////////////////////////////////////////////////////////////////
[5088]29t_inpEdit::t_inpEdit() : QMainWindow() {
30 _tabWidget = new t_tabWidget();
31 setCentralWidget(_tabWidget);
32 _tabWidget->setVisible(true);
[4823]33}
34
35// Destructor
36////////////////////////////////////////////////////////////////////////////
[5015]37t_inpEdit::~t_inpEdit() {
[4823]38}
Note: See TracBrowser for help on using the repository browser.