mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 13:23:25 +03:00
minor addition of non-const method
This commit is contained in:
parent
ad617e0c86
commit
a9c81857c1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user