pgLab/pglab/plugin_support/PluginModule.cpp

20 lines
385 B
C++
Raw Normal View History

#include "plugin_support/PluginModule.h"
PluginModule::PluginModule(QString name, QString ident)
: m_name(std::move(name))
, m_ident(std::move(ident))
{
}
void PluginModule::setDisplayCategory(QString category)
{
m_displayCategory = std::move(category);
}
void PluginModule::registerAction(QAction *action, MenuLocation menu_location, ToolbarLocation toolbar_location)
{
}