/* */ #ifndef _D_META_ENTRY_VISITOR_H_ #define _D_META_ENTRY_VISITOR_H_ #include "common.h" namespace aria2 { class MetaEntry; class MetaEntryVisitor { public: virtual ~MetaEntryVisitor() {} virtual void visit(const MetaEntry* e) = 0; }; } // namespace aria2 #endif // _D_META_ENTRY_VISITOR_H_