]> ruin.nu Git - hbs.git/blob - bs/battlesum.cpp
Changed lots of classnames from Bc to BS
[hbs.git] / bs / battlesum.cpp
1 #include "battlesum.h"
2
3 /* 
4  *  Constructs a BattleSum which is a child of 'parent', with the 
5  *  name 'name' and widget flags set to 'f' 
6  */
7 BattleSum::BattleSum( QWidget* parent,  const char* name, WFlags fl )
8     : BattleSumBase( parent, name, fl )
9 {
10 }
11
12 /*  
13  *  Destroys the object and frees any allocated resources
14  */
15 BattleSum::~BattleSum()
16 {
17     // no need to delete child widgets, Qt does it all for us
18 }
19
20 /* 
21  * public slot
22  */
23 void BattleSum::slotSetMaxTick( int i )
24 {
25     qWarning( "BattleSum::slotSetMaxTick( int i ) not yet implemented!" ); 
26 }
27
28 /* 
29  * public slot
30  */
31 void BattleSum::slotSetMinTick( int i )
32 {
33     qWarning( "BattleSum::slotSetMinTick( int i ) not yet implemented!" ); 
34 }
35
36
37 /* 
38  * protected slot
39  */
40 void BattleSum::init()
41 {
42     qWarning( "BattleSum::init() not yet implemented!" ); 
43 }
44
45 /* 
46  * protected slot
47  */
48 void BattleSum::destroy()
49 {
50     qWarning( "BattleSum::destroy() not yet implemented!" ); 
51 }
52
53