summaryrefslogtreecommitdiffstats
path: root/kanagram/src/leitnerbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'kanagram/src/leitnerbox.h')
-rw-r--r--kanagram/src/leitnerbox.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/kanagram/src/leitnerbox.h b/kanagram/src/leitnerbox.h
new file mode 100644
index 00000000..bf20d6a6
--- /dev/null
+++ b/kanagram/src/leitnerbox.h
@@ -0,0 +1,49 @@
+//
+// C++ Interface: leitnerbox
+//
+// Description:
+//
+//
+// Author: Martin Pfeiffer <martin-pfeiffer-bensheim@web.de>, (C) 2005
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef LEITNERBOX_H
+#define LEITNERBOX_H
+
+#include <qstring.h>
+
+/**
+@author Martin Pfeiffer
+*/
+class LeitnerBox
+{
+public:
+ LeitnerBox();
+
+ ~LeitnerBox();
+
+ void setCorrectWordBox( LeitnerBox* ); //sets the correct word box
+ void setWrongWordBox( LeitnerBox* ); //sets the wrong word box
+ void setBoxName( const QString& ); //sets the boxes name
+
+ void setVocabCount( int count );
+ int getVocabCount();
+
+ LeitnerBox* getCorrectWordBox();
+ LeitnerBox* getWrongWordBox();
+ const QString& getBoxName() const;
+
+ bool operator == ( const LeitnerBox& a ) const;
+
+private:
+ QString m_name;
+
+ int m_vocabCount;
+
+ LeitnerBox* m_wrongWordBox;
+ LeitnerBox* m_correctWordBox;
+};
+
+#endif