#include "shop.h" #include #include "shopform.h" #include "shopservice.h" Shop::Shop() { } void Shop::initServiceUi() { m_ui = new ShopForm(); m_service = new ShopService(); } QIcon Shop::pluginIcon() { return QIcon(":/icons/shop.svg"); } QTranslator *Shop::translator() { return translatorFrom(":/translations/shop_"); }