ci for save

This commit is contained in:
wyy 2013-12-05 22:13:22 -08:00
parent f79ce99a55
commit 2728d8311e
2 changed files with 3 additions and 2 deletions

View File

@ -6,8 +6,8 @@ namespace CppJieba
{
class ISegment
{
//public:
// virtual ~ISegment(){};
public:
virtual ~ISegment(){};
public:
virtual bool cut(Unicode::const_iterator begin , Unicode::const_iterator end, vector<string>& res) const = 0;
virtual bool cut(const string& str, vector<string>& res) const = 0;

View File

@ -57,6 +57,7 @@ namespace CppJieba
//{
// return SegmentBase::cut(str, res);
//}
using SegmentBase::cut;
bool cut(Unicode::const_iterator begin, Unicode::const_iterator end, vector<string>& res)const
{
if(!_getInitFlag())