13 lines
220 B
C++
13 lines
220 B
C++
|
#include "testOutboardWin.h"
|
||
|
|
||
|
testOutboardWin::testOutboardWin(QWidget *parent)
|
||
|
: QDialog( parent )
|
||
|
{
|
||
|
ui.setupUi( this );
|
||
|
}
|
||
|
|
||
|
QWidget * testOutboardWin::getDrawingAreaWidget(void)
|
||
|
{
|
||
|
return ui.graphicsView;
|
||
|
}
|