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

stringInfosHasher.h « TERsrc « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9324cc47010943ebb2d72a7becd515869c12bbb (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
#ifndef __STRINGINFOSHASHER_H__
#define __STRINGINFOSHASHER_H__

#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 );
};

}

#endif  // __STRINGINFOSHASHER_H__