/* */ #ifndef _D_METALINK_METAURL_H_ #define _D_METALINK_METAURL_H_ #include "common.h" #include namespace aria2 { class MetalinkMetaurl { public: std::string url; std::string mediatype; std::string name; int priority; MetalinkMetaurl(); MetalinkMetaurl(const std::string& url, const std::string& mediatype, const std::string& name, int priority); static const std::string MEDIATYPE_TORRENT; }; } // namespace aria2 #endif // _D_METALINK_METAURL_H_