source: ntrip/trunk/GnssCenter/src/inpedit/uniline.h@ 4936

Last change on this file since 4936 was 4884, checked in by mervart, 11 years ago
File size: 416 bytes
Line 
1#ifndef RTGUI_UNILINE_H
2#define RTGUI_UNILINE_H
3
4#include <QtGui>
5
6namespace RTGUI {
7
8class t_keyword;
9
10class t_uniLine : public QTableWidget {
11 Q_OBJECT
12
13 public:
14 t_uniLine(const QString& fldMask, const t_keyword* keyword,
15 QWidget* parent = 0);
16 ~t_uniLine();
17
18 private slots:
19 void slotItemClicked(QTableWidgetItem* item);
20
21 private:
22 const t_keyword* _keyword;
23};
24
25} // namespace RTGUI
26
27#endif
Note: See TracBrowser for help on using the repository browser.