Line | |
---|
1 |
|
---|
2 | /* -------------------------------------------------------------------------
|
---|
3 | * RTNet GUI
|
---|
4 | * -------------------------------------------------------------------------
|
---|
5 | *
|
---|
6 | * Class: t_lineEdit
|
---|
7 | *
|
---|
8 | * Purpose: Subclasses QLineEdit
|
---|
9 | *
|
---|
10 | * Author: L. Mervart
|
---|
11 | *
|
---|
12 | * Created: 08-Jan-2013
|
---|
13 | *
|
---|
14 | * Changes:
|
---|
15 | *
|
---|
16 | * -----------------------------------------------------------------------*/
|
---|
17 |
|
---|
18 | #include "lineedit.h"
|
---|
19 |
|
---|
20 | using namespace std;
|
---|
21 | using namespace GnssCenter;
|
---|
22 |
|
---|
23 | // Constructor
|
---|
24 | ////////////////////////////////////////////////////////////////////////////////
|
---|
25 | t_lineEdit::t_lineEdit(QWidget* parent) : QLineEdit(parent) {
|
---|
26 | }
|
---|
27 |
|
---|
28 | // Destructor
|
---|
29 | ////////////////////////////////////////////////////////////////////////////////
|
---|
30 | t_lineEdit::~t_lineEdit() {
|
---|
31 | }
|
---|
32 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.