00001 #ifndef LUX_LEXER_H 00002 #define LUX_LEXER_H 00003 00004 #include "mecab_ma.h" 00005 00006 namespace Lux { 00007 00008 template <class LexingPolicy> 00009 class Lexer : public LexingPolicy { 00010 00011 /* 00012 * if you want to add codes before or after the method 00013 * (something like degugging codes and so on), 00014 * you can easily create a function having the same name. 00015 */ 00016 }; 00017 } 00018 00019 typedef Lux::Lexer<Lux::MecabMA> LuxLexer; 00020 00021 #endif