#include "tycho.h" #include "project.h" #include "../ui/ui_projectview.h" ProjectView::ProjectView(QWidget *parent) : QWidget(parent), ui(new Ui::ProjectView), proj(new ProjectModel) { ui->setupUi(this); dbgPrintFunc(); } ProjectView::~ProjectView() { dbgPrintFunc(); } QSharedPointer ProjectView::model() { return proj; } // EOF