source: ntrip/trunk/GnssCenter/main/plugininterface.h@ 9500

Last change on this file since 9500 was 5059, checked in by mervart, 11 years ago
File size: 385 bytes
Line 
1#ifndef GnssCenter_PLUGININTERFACE_H
2#define GnssCenter_PLUGININTERFACE_H
3
4#include <QtGui>
5#include <QtPlugin>
6
7namespace GnssCenter {
8
9class t_pluginFactoryInterface {
10 public:
11 virtual QWidget* create() = 0;
12 virtual QString getName() const = 0;
13};
14
15} // namespace GnssCenter
16
17Q_DECLARE_INTERFACE(GnssCenter::t_pluginFactoryInterface, "GnssCenter_pluginFactoryInterface")
18
19#endif
Note: See TracBrowser for help on using the repository browser.