source:
ntrip/trunk/GnssCenter/src/plugininterface.h@
5012
| Last change on this file since 5012 was 5012, checked in by , 13 years ago | |
|---|---|
| File size: 354 bytes | |
| Line | |
|---|---|
| 1 | #ifndef GnssCenter_PLUGININTERFACE_H |
| 2 | #define GnssCenter_PLUGININTERFACE_H |
| 3 | |
| 4 | #include <QtCore> |
| 5 | |
| 6 | namespace GnssCenter { |
| 7 | |
| 8 | class t_pluginInterface { |
| 9 | public: |
| 10 | virtual ~t_pluginInterface() {} |
| 11 | virtual bool expectInputFile() const = 0; |
| 12 | virtual void setInputFile(const QString& fileName) = 0; |
| 13 | virtual void show() = 0; |
| 14 | }; |
| 15 | |
| 16 | } // namespace GnssCenter |
| 17 | |
| 18 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
