Ignore:
Timestamp:
Mar 28, 2013, 2:32:27 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/src/inpedit/inpedit.h

    r5014 r5015  
    1 #ifndef GnssCenter_INPFILE_H
    2 #define GnssCenter_INPFILE_H
     1#ifndef GnssCenter_INPEDIT_H
     2#define GnssCenter_INPEDIT_H
    33
    44#include <QtGui>
     5#include "plugininterface.h"
    56
    67namespace GnssCenter {
     
    910class t_panel;
    1011
    11 class t_inpFile : public QTabWidget {
     12class t_inpEdit : public QTabWidget, public t_pluginInterface {
     13 Q_OBJECT
     14 Q_INTERFACES(GnssCenter::t_pluginInterface)
     15
    1216 public:
    13   t_inpFile(const QString& fileName);
    14   ~t_inpFile();
     17  t_inpEdit();
     18  ~t_inpEdit();
     19  virtual bool expectInputFile() const {return true;}
     20  virtual void setInputFile(const QString&);
     21  virtual void show() {QTabWidget::show();}   
    1522
    1623 private:
Note: See TracChangeset for help on using the changeset viewer.