concordia-library/concordia/hash_generator.hpp

37 lines
577 B
C++
Raw Normal View History

2013-11-12 16:58:31 +01:00
#ifndef HASH_GENERATOR_HDR
#define HASH_GENERATOR_HDR
#include <string>
#include <map>
#include <vector>
2013-11-12 22:08:37 +01:00
#include "concordia/concordia_exception.hpp"
2013-11-12 16:58:31 +01:00
/*!
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:
2013-11-12 22:08:37 +01:00
map<string,int> _wordMap;
2013-11-12 16:58:31 +01:00
string _wordMapFilename;
};
#endif