/* */ #ifndef _D_URI_LIST_PARSER_H_ #define _D_URI_LIST_PARSER_H_ #include "common.h" #include class UriListParser { protected: virtual istream& getInputStream() = 0; virtual const istream& getInputStream() const = 0; public: UriListParser() {} virtual ~UriListParser() {} bool hasNext() const; Strings next(); }; #endif // _D_URI_LIST_PARSER_H_