]> ruin.nu Git - hbs.git/blobdiff - bs/battlesum.cpp
Changed lots of classnames from Bc to BS
[hbs.git] / bs / battlesum.cpp
index 307392ddb75dede9b0a79b417691b70343ca8d28..bcb1f8fce64ac3c4ec45980e587341555fefdcba 100644 (file)
@@ -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!" ); 
+}
+
+