mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
16 lines
262 B
C++
16 lines
262 B
C++
#ifndef CPPJIEBA_ISEGMENT_H
|
|
#define CPPJIEBA_ISEGMENT_H
|
|
|
|
namespace CppJieba {
|
|
|
|
class ISegment {
|
|
public:
|
|
virtual ~ISegment() {
|
|
}
|
|
virtual bool cut(const string& str, vector<string>& res) const = 0;
|
|
};
|
|
|
|
} // namespace CppJieba
|
|
|
|
#endif // CPPJIEBA_ISEGMENT_H
|