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

Last change on this file since 5088 was 5088, checked in by mervart, 11 years ago
File size: 612 bytes
RevLine 
[5015]1#ifndef GnssCenter_INPEDIT_H
2#define GnssCenter_INPEDIT_H
[4823]3
[4826]4#include <QtGui>
[5015]5#include "plugininterface.h"
[5088]6#include "tabwidget.h"
[4823]7
[5000]8namespace GnssCenter {
[4823]9
[4855]10class t_keyword;
11class t_panel;
[4823]12
[5088]13class t_inpEdit : public QMainWindow {
[4823]14 public:
[5015]15 t_inpEdit();
16 ~t_inpEdit();
[4823]17 private:
[5088]18 t_tabWidget* _tabWidget;
[4823]19};
20
[5051]21class t_inpEditFactory : public QObject, public t_pluginFactoryInterface {
22 Q_OBJECT
23 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
24 public:
[5059]25 virtual QWidget* create() {return new t_inpEdit();}
[5055]26 virtual QString getName() const {return QString("Edit Input");}
[5051]27};
28
[5000]29} // namespace GnssCenter
[4823]30
31#endif
32
Note: See TracBrowser for help on using the repository browser.