#include "Dictionary.h" #if defined(PHREEQCI_GUI) #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif #endif Dictionary::Dictionary(void) { } Dictionary::Dictionary(std::string & words_string) { std::istringstream words_stream(words_string); char str[256]; while (words_stream.getline(str,256)) { this->Find(str); } } Dictionary::~Dictionary(void) { } int Dictionary::Find(std::string str) { std::map::iterator it = this->dictionary_map.find(str); if (it != this->dictionary_map.end()) { return it->second; } int i = this->MapSize(); this->dictionary_map[str] = i; this->words.push_back(str); this->dictionary_oss << str << "\n"; return i; }