Maraiah/tycho/cc/mapview.cc

18 lines
228 B
C++
Raw Normal View History

2019-07-02 14:57:10 -07:00
#include "tycho.h"
MapView::MapView(std::weak_ptr<MapModel> _mapModel, QWidget *parent) :
QWidget(parent),
mapModel(_mapModel)
2019-07-02 14:57:10 -07:00
{
setupUi(this);
dbgPrintFunc();
}
MapView::~MapView()
{
dbgPrintFunc();
}
// EOF