Ignore:
Timestamp:
Mar 28, 2013, 6:43:15 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/main/plugininterface.h

    r5014 r5052  
    88class t_pluginInterface {
    99 public:
    10   virtual ~t_pluginInterface() {}
    11   virtual bool expectInputFile() const = 0;
    12   virtual void setInputFile(const QString& fileName) = 0;
    1310  virtual void show() = 0;
     11};
     12
     13class t_pluginFactoryInterface {
     14 public:
     15  virtual t_pluginInterface* create() = 0;
    1416};
    1517
    1618} // namespace GnssCenter
    1719
    18 Q_DECLARE_INTERFACE(GnssCenter::t_pluginInterface, "GnssCenter_pluginInterface")
     20Q_DECLARE_INTERFACE(GnssCenter::t_pluginFactoryInterface, "GnssCenter_pluginFactoryInterface")
    1921
    2022#endif
Note: See TracChangeset for help on using the changeset viewer.