]> ruin.nu Git - hbs.git/blob - bs/scanview.cpp
some
[hbs.git] / bs / scanview.cpp
1 #include "scanview.h"
2
3 /* 
4  *  Constructs a ScanView which is a child of 'parent', with the 
5  *  name 'name' and widget flags set to 'f' 
6  */
7 ScanView::ScanView( QWidget* parent,  const char* name, WFlags fl )
8     : ScanViewBase( parent, name, fl )
9 {
10 }
11
12 /*  
13  *  Destroys the object and frees any allocated resources
14  */
15 ScanView::~ScanView()
16 {
17     // no need to delete child widgets, Qt does it all for us
18 }
19
20 /* 
21  * protected slot
22  */
23 void ScanView::init()
24 {
25     qWarning( "ScanView::init() not yet implemented!" ); 
26 }
27 /* 
28  * protected slot
29  */
30 void ScanView::destroy()
31 {
32     qWarning( "ScanView::destroy() not yet implemented!" ); 
33 }
34