mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
8c3b82e596
This change might be useful to avoid duplicating the names. The reason is that although MERT programs are standalone applications, some header files such as data.h and point.h have common guard macro names like "DATA_H" and "POINT_H", and this is not good naming conventions when you want to include external headers. Some files actually include headers in Moses and KenLM's util.
36 lines
607 B
C++
36 lines
607 B
C++
#include "stringHasher.h"
|
|
// The following class defines a hash function for strings
|
|
|
|
|
|
using namespace std;
|
|
|
|
namespace HashMapSpace
|
|
{
|
|
stringHasher::stringHasher ( long cle, string cleTxt, string valueTxt )
|
|
{
|
|
m_hashKey=cle;
|
|
m_key=cleTxt;
|
|
m_value=valueTxt;
|
|
}
|
|
// stringHasher::~stringHasher(){};*/
|
|
long stringHasher::getHashKey()
|
|
{
|
|
return m_hashKey;
|
|
}
|
|
string stringHasher::getKey()
|
|
{
|
|
return m_key;
|
|
}
|
|
string stringHasher::getValue()
|
|
{
|
|
return m_value;
|
|
}
|
|
void stringHasher::setValue ( string value )
|
|
{
|
|
m_value=value;
|
|
}
|
|
|
|
|
|
// typedef stdext::hash_map<string, string, stringhasher> HASH_S_S;
|
|
}
|