concordia-library/concordia/hash_generator.hpp
2013-11-12 16:58:31 +01:00

38 lines
575 B
C++

#ifndef HASH_GENERATOR_HDR
#define HASH_GENERATOR_HDR
#include <string>
#include <map>
#include <vector>
#include "concordia/concordia_config.hpp"
/*!
Class for generating a sentence hash.
*/
using namespace std;
class HashGenerator {
public:
explicit HashGenerator(const string & wordMapFilename) throw(ConcordiaException);
/*! Destructor.
*/
virtual ~HashGenerator();
vector<int> generateHash(const string & sentence);
void serializeWordMap();
private:
map<int,string> _wordMap;
string _wordMapFilename;
};
#endif