example.cpp
上传用户:sz_zxd888
上传日期:2021-08-19
资源大小:6059k
文件大小:1k
- #include <string>
- #include <vector>
- #include <iostream>
- using namespace std;
- #include "IRLAS_DLL.h"
- int main()
- {
- IRLAS_LoadResource( "irlas.ini", "../irlas_data");
- void *g_pSegger = IRLAS_CreateSegger();
- IRLAS_SetOption(g_pSegger, 1, 1, 1);
-
- string str = "我是一个中国人,我爱我的祖国。";
- vector<string> vecWord;
- IRLAS(g_pSegger, str, vecWord);
- copy(vecWord.begin(), vecWord.end(), ostream_iterator<string>(cout, " "));
- cout << endl;
-
- IRLAS_ReleaseSegger(g_pSegger);
- IRLAS_ReleaseResource();
- return 0;
- }