25 lines
520 B
C
25 lines
520 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include <QTranslator>
|
||
|
|
|
||
|
|
#include "zeiterfassungplugin.h"
|
||
|
|
|
||
|
|
class MainWindow;
|
||
|
|
|
||
|
|
class Q_DECL_EXPORT ExportPlugin : public ZeiterfassungPlugin
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
Q_PLUGIN_METADATA(IID "dbsoftware.zeiterfassung.plugin/1.0" FILE "exportplugin.json")
|
||
|
|
Q_INTERFACES(ZeiterfassungPlugin)
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit ExportPlugin(QObject *parent = Q_NULLPTR);
|
||
|
|
|
||
|
|
// ZeiterfassungPlugin interface
|
||
|
|
void attachTo(MainWindow &mainWindow) Q_DECL_OVERRIDE;
|
||
|
|
|
||
|
|
private:
|
||
|
|
QTranslator m_translator;
|
||
|
|
};
|