#ifndef _TAGGEDTREEBANK_CLASS #define _TAGGEDTREEBANK_CLASS #include "tagger.h" class TaggedTreebank : public Tagger { public: TaggedTreebank(void); ~TaggedTreebank(void); vector Tag(string filename); private: bool isValidTag(string tag); vector tags; }; #endif