| 21 | using namespace opencc; |
| 22 | |
| 23 | SegmentsPtr Segmentation::Segment(const char* text) const { |
| 24 | return Segment(std::string_view(text)); |
| 25 | } |
| 26 | |
| 27 | SegmentsPtr Segmentation::Segment(const std::string& str) const { |
| 28 | return Segment(std::string_view(str)); |
no outgoing calls