Maraiah/tycho/cc/mapview.cc

18 lines
233 B
C++
Raw Normal View History

2019-07-02 14:57:10 -07:00
#include "tycho.h"
2019-07-03 17:51:38 -07:00
CMapView::CMapView(Project *parent) :
QWidget(static_cast<QWidget *>(parent)),
mapModel(parent->getMapModel())
2019-07-02 14:57:10 -07:00
{
setupUi(this);
dbgPrintFunc();
}
2019-07-03 17:51:38 -07:00
CMapView::~CMapView()
2019-07-02 14:57:10 -07:00
{
dbgPrintFunc();
}
// EOF