Changed Phrase.m_words from private to protected.

This commit is contained in:
Ulrich Germann 2014-06-05 01:41:50 +01:00
parent 3145bf3cc4
commit 004b8c9078

View File

@ -47,8 +47,8 @@ class WordsRange;
class Phrase
{
friend std::ostream& operator<<(std::ostream&, const Phrase&);
private:
// private:
protected:
std::vector<Word> m_words;
public: