labs-edaf30/lab2/word.cc
Sven Gestegard Robertz e4df45f4a9 imported lab skeletons
2021-10-27 15:39:22 +02:00

16 lines
281 B
C++

#include <string>
#include <vector>
#include "word.h"
using std::vector;
using std::string;
Word::Word(const string& w, const vector<string>& t) {}
string Word::get_word() const {
return string();
}
unsigned int Word::get_matches(const vector<string>& t) const {
return 0;
}