#ifndef _WORD_CLASS #define _WORD_CLASS #define VERBOSITY 2 #include using namespace std; class WordItem { public: WordItem(string w = "", string t = ""); ~WordItem(void); string word; string tag; int ranking; bool operator==(WordItem that); bool operator<=(WordItem that); }; #endif