#pragma once #include class DictionaryEntryT { public: DictionaryEntryT(); DictionaryEntryT(std::string rawWord); std::string GetWord(void) const; int GetCount(void) const; void IncrementCount(void); bool Same(const DictionaryEntryT & other) const; bool Less(const DictionaryEntryT & other) const; private: std::string word; int count{0}; };