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

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