00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef INDRI_STEMMERFACTORY_HPP
00020 #define INDRI_STEMMERFACTORY_HPP
00021
00022 #include "indri/Transformation.hpp"
00023 #include <string>
00024 #include "indri/Parameters.hpp"
00025 namespace indri
00026 {
00027 namespace parse
00028 {
00029
00030 class StemmerFactory {
00031 public:
00032 static Transformation* get( const std::string& stemmerName, indri::api::Parameters& stemmerParams );
00033 static std::string preferredName( const std::string& stemmerName );
00034 };
00035 }
00036 }
00037
00038 #endif // INDRI_STEMMERFACTORY_HPP