#pragma once #include "WordCountT.h" #include "WordArrayT.h" #include size_t FindWord(const WordCountT & word, const WordArrayT & words); void SortByWord(WordArrayT & words); void SortByCount(WordArrayT & words); void PrintWords(const WordArrayT & words); void AddWord(WordArrayT & words, std::string newWord);