#ifndef __STRINGINFOSHASHER_H__ #define __STRINGINFOSHASHER_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 // __STRINGINFOSHASHER_H__