##// END OF EJS Templates
A lot of cleaning.
A lot of cleaning.

File last commit:

r4:b41a5ed0a855 default
r4:b41a5ed0a855 default
Show More
qlopservice.h
20 lines | 338 B | text/x-c | CLexer
A lot of cleaning.
r4 #ifndef QLOPSERVICE_H
#define QLOPSERVICE_H
#include <QObject>
#include <QWidget>
class QLopService : public QObject
{
Q_OBJECT
public:
explicit QLopService(QObject *parent = 0);
~QLopService();
virtual QWidget* getGUI()=0;
virtual const QString& serviceName()=0;
signals:
public slots:
};
#endif // QLOPSERVICE_H