#ifndef MERT_TER_STRING_INFOS_HASHER_H_ #define MERT_TER_STRING_INFOS_HASHER_H_ #include #include #include using namespace std; namespace HashMapSpace { class stringInfosHasher { private: long m_hashKey; string m_key; vector m_value; public: stringInfosHasher ( long cle, string cleTxt, vector valueVecInt ); long getHashKey(); string getKey(); vector getValue(); void setValue ( vector value ); }; } #endif // MERT_TER_STRING_INFOS_HASHER_H_