]> ruin.nu Git - hbs.git/blob - bs/tickview.cpp
some
[hbs.git] / bs / tickview.cpp
1 #include "tickview.h"
2
3 /* 
4  *  Constructs a TickView which is a child of 'parent', with the 
5  *  name 'name' and widget flags set to 'f' 
6  */
7 TickView::TickView( QWidget* parent,  const char* name, WFlags fl )
8     : CTickViewBase( parent, name, fl )
9 {
10 }
11
12 /*  
13  *  Destroys the object and frees any allocated resources
14  */
15 TickView::~TickView()
16 {
17     // no need to delete child widgets, Qt does it all for us
18 }
19