You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
203 B
C++

#include "shop.h"
#include <QIcon>
#include "shopform.h"
Shop::Shop()
{
}
void Shop::initServiceUi()
{
m_ui = new ShopForm();
}
QIcon Shop::pluginIcon()
{
return QIcon(":/icons/shop.svg");
}