31 lines
751 B
C++
Executable File
31 lines
751 B
C++
Executable File
// ____ _ _
|
|
// | __ ) ___ __ _ __ _| | ___ | |__
|
|
// | _ \ / _ \ / _` |/ _` | |/ _ \ | '_ \
|
|
// | |_) | (_) | (_| | (_| | | __/_| | | |
|
|
// |____/ \___/ \__, |\__, |_|\___(_)_| |_|
|
|
// |___/ |___/
|
|
// Author: Love Billenius <lovbi127@student.liu.se>
|
|
|
|
#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
|