labs-edaf30/lab2/word.cc

17 lines
281 B
C++
Raw Normal View History

2021-10-27 15:15:47 +02:00
#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;
}