/* * Copyright (C) 2020, KylinSoft Co., Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * */ #ifndef CHINESESEGMENTATIONPRIVATE_H #define CHINESESEGMENTATIONPRIVATE_H #include "chinese-segmentation.h" #include "cppjieba/Jieba.hpp" #include "cppjieba/KeywordExtractor.hpp" class ChineseSegmentationPrivate { public: explicit ChineseSegmentationPrivate(ChineseSegmentation *parent = nullptr); ~ChineseSegmentationPrivate(); vector callSegment(const string& sentence); vector callSegment(QString& sentence); vector callMixSegmentCutStr(const string& sentence); vector callMixSegmentCutWord(const string& sentence); string lookUpTagOfWord(const string& word); vector> getTagOfWordsInSentence(const string &sentence); vector callFullSegment(const string& sentence); vector callQuerySegment(const string& sentence); vector callHMMSegment(const string& sentence); vector callMPSegment(const string& sentence); private: cppjieba::Jieba *m_jieba; ChineseSegmentation *q = nullptr; }; #endif // CHINESESEGMENTATIONPRIVATE_H