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.
|
#include "camp.h"
|
|
|
|
#include "campgrid.h"
|
|
#include "campform.h"
|
|
|
|
Camp::Camp()
|
|
{
|
|
}
|
|
|
|
void Camp::initServiceUi()
|
|
{
|
|
m_ui = new CampGrid();
|
|
((CampGrid*)m_ui)->setForm(new CampForm());
|
|
}
|
|
|
|
QIcon Camp::pluginIcon()
|
|
{
|
|
return QIcon(":/icons/campPlugin.svg");
|
|
}
|