#ifndef DICTIONARY_H #define DICTIONARY_H #include #include #include using namespace std; class Dictionary { public: Dictionary(string& dicFilePath); ~Dictionary(); size_t getValueVector(string& key, vector& valueVectorRef); size_t getCount(string& key); bool has(string& key); private: map > dic_; }; #endif