summaryrefslogtreecommitdiffstats
path: root/labb5/src/Boggle.h
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2020-11-17 15:42:27 +0100
committerGustav Sörnäs <gustav@sornas.net>2020-11-17 15:42:27 +0100
commitfb80ac50825c7ca1fa063d3493175b7b27adbdb1 (patch)
tree4d84895d45ca2c177ddefe11164575bf6762b3ca /labb5/src/Boggle.h
parent4065799f7080260f507a5e3ea8c2d8375e735166 (diff)
downloadtddd86-fb80ac50825c7ca1fa063d3493175b7b27adbdb1.tar.gz
add given code
Diffstat (limited to 'labb5/src/Boggle.h')
-rwxr-xr-xlabb5/src/Boggle.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/labb5/src/Boggle.h b/labb5/src/Boggle.h
new file mode 100755
index 0000000..3abe9b5
--- /dev/null
+++ b/labb5/src/Boggle.h
@@ -0,0 +1,29 @@
+// This is the .h file you will edit and turn in.
+// We have provided a minimal skeleton for you,
+// but you must finish it as described in the spec.
+// Also remove these comments here and add your own, as well as on the members.
+// TODO: remove this comment header and replace it with your own
+
+#ifndef _boggle_h
+#define _boggle_h
+
+#include <iostream>
+#include <string>
+// TODO: include any other header files you need
+
+using namespace std;
+
+class Boggle {
+public:
+ const string DICTIONARY_FILE = "EnglishWords.dat";
+ const int MIN_WORD_LENGTH = 4;
+ const int BOARD_SIZE = 4;
+
+ // TODO: decide the public member functions and declare them
+
+private:
+ // TODO: decide the private member variables/functions and declare them
+
+};
+
+#endif