#pragma once #include "SegmentBase.hpp" namespace cppjieba { class SegmentTagged : public SegmentBase { public: SegmentTagged() { } virtual ~SegmentTagged() { } virtual bool Tag(const string& src, vector >& res) const = 0; virtual const DictTrie* GetDictTrie() const = 0; }; // class SegmentTagged } // cppjieba