Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stringInfosHasher.cpp « TERsrc « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e02e7a205fbe6f7e759c6846ffd88b1a8ee8fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "stringInfosHasher.h"
// The following class defines a hash function for strings


using namespace std;

namespace HashMapSpace
{
stringInfosHasher::stringInfosHasher ( long cle, string cleTxt, vector<string> valueVecInt )
{
  m_hashKey=cle;
  m_key=cleTxt;
  m_value=valueVecInt;
}
//     stringInfosHasher::~stringInfosHasher(){};*/
long  stringInfosHasher::getHashKey()
{
  return m_hashKey;
}
string  stringInfosHasher::getKey()
{
  return m_key;
}
vector<string> stringInfosHasher::getValue()
{
  return m_value;
}
void stringInfosHasher::setValue ( vector<string>   value )
{
  m_value=value;
}


// typedef stdext::hash_map<string, string, stringhasher> HASH_S_S;
}