2012-02-20 04:46:08 +04:00
|
|
|
#ifndef MERT_TER_STRING_INFOS_HASHER_H_
|
|
|
|
#define MERT_TER_STRING_INFOS_HASHER_H_
|
2011-11-12 02:59:50 +04:00
|
|
|
|
2011-08-16 20:21:31 +04:00
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
namespace HashMapSpace
|
|
|
|
{
|
|
|
|
class stringInfosHasher
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
long m_hashKey;
|
|
|
|
string m_key;
|
|
|
|
vector<string> m_value;
|
|
|
|
|
|
|
|
public:
|
|
|
|
stringInfosHasher ( long cle, string cleTxt, vector<string> valueVecInt );
|
|
|
|
long getHashKey();
|
|
|
|
string getKey();
|
|
|
|
vector<string> getValue();
|
|
|
|
void setValue ( vector<string> value );
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2011-11-12 02:59:50 +04:00
|
|
|
|
2012-02-20 04:46:08 +04:00
|
|
|
#endif // MERT_TER_STRING_INFOS_HASHER_H_
|