##// END OF EJS Templates
plot view export works on cassini fgm data.
plot view export works on cassini fgm data.

File last commit:

r5:92e4585e8fab default
r8:c56bc5e5916b default
Show More
qlopservice.h
24 lines | 441 B | text/x-c | CLexer
#ifndef QLOPSERVICE_H
#define QLOPSERVICE_H
#include <QObject>
#include <QWidget>
#include <QDockWidget>
class QLopService : public QObject
{
Q_OBJECT
public:
explicit QLopService(QObject *parent = 0);
~QLopService();
virtual QDockWidget* getGUI()=0;
virtual const QString& serviceName(){return m_serviceName;}
signals:
public slots:
protected:
bool m_noGui;
QString m_serviceName;
};
#endif // QLOPSERVICE_H