2019-01-05 19:58:23 +01:00
|
|
|
|
#ifndef QUERYTOOLMODULE_H
|
|
|
|
|
|
#define QUERYTOOLMODULE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "plugin_support/PluginModule.h"
|
|
|
|
|
|
|
|
|
|
|
|
class QueryToolModule: public PluginModule {
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
|
|
|
|
using PluginModule::PluginModule;
|
|
|
|
|
|
|
|
|
|
|
|
void init() override;
|
2019-02-08 10:10:11 +01:00
|
|
|
|
void staticAction_new(IPluginContentWidgetContext* context);
|
|
|
|
|
|
void staticAction_open(IPluginContentWidgetContext* context);
|
2019-01-05 19:58:23 +01:00
|
|
|
|
private slots:
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // QUERYTOOLMODULE_H
|