source: ntrip/trunk/GnssCenter/src/plugininterface.h@ 5013

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