#pragma once #include #include class WordT{ public: void Word(std::string w) ; std::string Word() const; void Increment(void); int Count(void) const; bool operator ==(const WordT & other) const; bool operator < (const WordT & other) const; private: int count{0}; std::string word; }; std::ostream & operator << (std::ostream & s, const WordT & other);