minor addition of non-const method

This commit is contained in:
Hieu Hoang 2013-12-29 23:33:46 +00:00
parent ad617e0c86
commit a9c81857c1

View File

@ -61,9 +61,10 @@ public:
, int numSourceFactors, int numTargetFactors, int numScores);
void EndSave();
Vocab &GetVocab() {
return m_vocab;
}
Vocab &GetVocab()
{ return m_vocab; }
const Vocab &GetVocab() const
{ return m_vocab; }
size_t GetSourceWordSize() const;
size_t GetTargetWordSize() const;