CLucene - a full-featured, c++ search engine
API Documentation
00001 /*------------------------------------------------------------------------------ 00002 * Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team 00003 * 00004 * Distributable under the terms of either the Apache License (Version 2.0) or 00005 * the GNU Lesser General Public License, as specified in the COPYING file. 00006 ------------------------------------------------------------------------------*/ 00007 #ifndef _lucene_analysis_standard_StandardTokenizerConstants 00008 #define _lucene_analysis_standard_StandardTokenizerConstants 00009 00010 00011 CL_NS_DEF2(analysis,standard) 00012 enum TokenTypes { 00013 _EOF, 00014 UNKNOWN, 00015 ALPHANUM, 00016 APOSTROPHE, 00017 ACRONYM, 00018 COMPANY, 00019 EMAIL, 00020 HOST, 00021 NUM, 00022 CJK 00023 }; 00024 extern const TCHAR** tokenImage; 00025 00026 CL_NS_END2 00027 #endif