00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef INDRI_DOCUMENTITERATORFACTORY_HPP
00020 #define INDRI_DOCUMENTITERATORFACTORY_HPP
00021
00022 #include "indri/DocumentIterator.hpp"
00023 #include <map>
00024 #include <string>
00025 namespace indri
00026 {
00027 namespace parse
00028 {
00029
00030 class DocumentIteratorFactory {
00031 public:
00032 ~DocumentIteratorFactory();
00033
00034 static DocumentIterator* get( const std::string& type );
00035 static DocumentIterator* get( const std::string& type, const char* startDocTag, const char* endDocTag, const char* startMetadataTag );
00036
00037 static std::string preferredName( const std::string& type );
00038 };
00039 }
00040 }
00041
00042 #endif // INDRI_DOCUMENTITERATORFACTORY_HPP
00043