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
00026 class StemmerFactory {
00027 public:
00028 static Transformation* get( const std::string& stemmerName, Parameters& stemmerParams );
00029 static std::string preferredName( const std::string& stemmerName );
00030 };
00031
00032 #endif // INDRI_STEMMERFACTORY_HPP