#ifndef _PHRASE_H_ #define _PHRASE_H_ #include #include #include "phrase_builder.h" using namespace std; class Phrase { public: friend Phrase PhraseBuilder::Build(const vector& phrase); int Arity() const; int GetChunkLen(int index) const; vector Get() const; int GetSymbol(int position) const; private: vector symbols; vector var_pos; vector words; }; #endif