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