00001 #include "childwindow.h" 00002 #include "../Data/datadefinitions.h" 00003 00004 ChildWindow::ChildWindow() 00005 { 00006 setAttribute(Qt::WA_DeleteOnClose); 00007 setMinimumSize(500,500); 00008 } 00009 00010 void ChildWindow::setType(int t) 00011 { 00012 documenttype = t; 00013 } 00014 00015 int ChildWindow::type() 00016 { 00017 return documenttype; 00018 } 00019 00020 AbstractModel* ChildWindow::model() 00021 { 00022 return NULL; 00023 }