concordia-library/concordia/word_map.hpp

46 lines
911 B
C++
Raw Normal View History

2013-11-12 22:08:37 +01:00
#ifndef WORD_MAP_HDR
#define WORD_MAP_HDR
#include <string>
#include <map>
#include "concordia/concordia_exception.hpp"
#include "concordia/common/config.hpp"
2013-11-14 15:44:50 +01:00
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/serialization/map.hpp>
2013-11-12 22:08:37 +01:00
/*!
2013-11-14 15:44:50 +01:00
Class representing dictionary for word to int encoding.
2013-11-12 22:08:37 +01:00
*/
using namespace std;
class WordMap {
public:
explicit WordMap() throw(ConcordiaException);
2013-11-14 15:44:50 +01:00
2013-11-12 22:08:37 +01:00
/*! Destructor.
*/
virtual ~WordMap();
INDEX_CHARACTER_TYPE getWordCode(const string & word)
throw(ConcordiaException);
2013-11-12 22:08:37 +01:00
private:
2013-11-14 15:44:50 +01:00
friend class boost::serialization::access;
template<class Archive>
2013-11-12 22:08:37 +01:00
2013-11-14 15:44:50 +01:00
void serialize(Archive & ar, const unsigned int version) {
ar & _map;
ar & _nextFree;
}
map<string, INDEX_CHARACTER_TYPE> _map;
2013-11-14 15:44:50 +01:00
INDEX_CHARACTER_TYPE _nextFree;
2013-11-12 22:08:37 +01:00
};
#endif