X-Git-Url: https://ruin.nu/git/?p=hbs.git;a=blobdiff_plain;f=bs%2Fbattlesum.cpp;h=bcb1f8fce64ac3c4ec45980e587341555fefdcba;hp=307392ddb75dede9b0a79b417691b70343ca8d28;hb=1bb3da557a983d00ec3ff37ff94152e6f109ee4a;hpb=ec7ebf4a9acd1d7b7e4e7967c4afa94300ed5ff9 diff --git a/bs/battlesum.cpp b/bs/battlesum.cpp index 307392d..bcb1f8f 100644 --- a/bs/battlesum.cpp +++ b/bs/battlesum.cpp @@ -1,19 +1,53 @@ -#include "bcmainview.h" +#include "battlesum.h" /* - * Constructs a BcMainView which is a child of 'parent', with the + * Constructs a BattleSum which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -BcMainView::BcMainView( QWidget* parent, const char* name, WFlags fl ) - : BcViewBase( parent, name, fl ) +BattleSum::BattleSum( QWidget* parent, const char* name, WFlags fl ) + : BattleSumBase( parent, name, fl ) { } /* * Destroys the object and frees any allocated resources */ -BcMainView::~BcMainView() +BattleSum::~BattleSum() { // no need to delete child widgets, Qt does it all for us } +/* + * public slot + */ +void BattleSum::slotSetMaxTick( int i ) +{ + qWarning( "BattleSum::slotSetMaxTick( int i ) not yet implemented!" ); +} + +/* + * public slot + */ +void BattleSum::slotSetMinTick( int i ) +{ + qWarning( "BattleSum::slotSetMinTick( int i ) not yet implemented!" ); +} + + +/* + * protected slot + */ +void BattleSum::init() +{ + qWarning( "BattleSum::init() not yet implemented!" ); +} + +/* + * protected slot + */ +void BattleSum::destroy() +{ + qWarning( "BattleSum::destroy() not yet implemented!" ); +} + +