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

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

#include <string>
#include <stdio.h>
#include <iostream>
#include <vector>

using namespace std;
namespace HashMapSpace
{
class infosHasher
{
private:
  long m_hashKey;
  string m_key;
  vector<int> m_value;

public:
  infosHasher ( long cle, string cleTxt, vector<int> valueVecInt );
  long getHashKey();
  string getKey();
  vector<int> getValue();
  void setValue ( vector<int> value );


};

}

#endif  // __INFOSHASHER_H__