19 lines
389 B
C
19 lines
389 B
C
|
|
#ifndef QUERYTOOLMODULE_H
|
|||
|
|
#define QUERYTOOLMODULE_H
|
|||
|
|
|
|||
|
|
#include "plugin_support/PluginModule.h"
|
|||
|
|
|
|||
|
|
class QueryToolModule: public PluginModule {
|
|||
|
|
Q_OBJECT
|
|||
|
|
public:
|
|||
|
|
using PluginModule::PluginModule;
|
|||
|
|
|
|||
|
|
void init() override;
|
|||
|
|
void menuAction_new(IPluginContentWidgetContext* context);
|
|||
|
|
void menuAction_open(IPluginContentWidgetContext* context);
|
|||
|
|
private slots:
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif // QUERYTOOLMODULE_H
|