mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/*********************************
|
|
tercpp: an open-source Translation Edit Rate (TER) scorer tool for Machine Translation.
|
|
|
|
Copyright 2010-2013, Christophe Servan, LIUM, University of Le Mans, France
|
|
Contact: christophe.servan@lium.univ-lemans.fr
|
|
|
|
The tercpp tool and library are free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the licence, or
|
|
(at your option) any later version.
|
|
|
|
This program and library are distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this library; if not, write to the Free Software Foundation,
|
|
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
**********************************/
|
|
#ifndef __STRINGHASHER_H__
|
|
#define __STRINGHASHER_H__
|
|
#include <string>
|
|
//#include <ext/hash_map>
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
namespace TERCPPNS_HashMapSpace
|
|
{
|
|
|
|
class stringHasher
|
|
{
|
|
private:
|
|
long m_hashKey;
|
|
string m_key;
|
|
string m_value;
|
|
|
|
public:
|
|
stringHasher ( long cle, string cleTxt, string valueTxt );
|
|
long getHashKey();
|
|
string getKey();
|
|
string getValue();
|
|
void setValue ( string value );
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
#endif
|