マルチ変換で文節切り直し対応。
1 parent 1b8b894 commit 5d0d474382259095a9f5cf9216bebc48a28f70ef
@tamra tamra authored on 30 May 2005
Showing 5 changed files
View
1
■■■■
honoka/src/anthyconversion.cpp
}
 
ResultList AnthyConversion::getResultList(int p,int kt){
if (p == -1) p = pos;
if (p >= convResult.size()) return ResultList();
if ((kt != 0) || (p >= convResult.size())) return ResultList();
setPos(p);
return convResult[p];
}
View
8
honoka/src/convertor.cpp
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "convertor.h"
 
 
ResultList::ResultList()
{
pos = 0;
count = 0;
kType = 0;
}
 
/* 全部ダミーメソッドさぁー♪ */
 
Convertor::Convertor(ConfigPointer cfg) : HonokaPluginBase(String("Convertor"))
View
honoka/src/convertor.h
View
honoka/src/multiconvertor.cpp
View
honoka/src/wnnconversion.cpp