source: ntrip/trunk/GnssCenter/inpedit/uniline.h@ 5087

Last change on this file since 5087 was 5000, checked in by mervart, 11 years ago
File size: 436 bytes
Line 
1#ifndef GnssCenter_UNILINE_H
2#define GnssCenter_UNILINE_H
3
4#include <QtGui>
5
6namespace GnssCenter {
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 GnssCenter
26
27#endif
Note: See TracBrowser for help on using the repository browser.