source:
ntrip/trunk/GnssCenter/main/plugininterface.h@
9574
Last change on this file since 9574 was 5059, checked in by , 12 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 | |
7 | namespace GnssCenter { |
8 | |
9 | class t_pluginFactoryInterface { |
10 | public: |
11 | virtual QWidget* create() = 0; |
12 | virtual QString getName() const = 0; |
13 | }; |
14 | |
15 | } // namespace GnssCenter |
16 | |
17 | Q_DECLARE_INTERFACE(GnssCenter::t_pluginFactoryInterface, "GnssCenter_pluginFactoryInterface") |
18 | |
19 | #endif |
Note:
See TracBrowser
for help on using the repository browser.