/* */ #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); ~MetalinkMetaurl(); static const char MEDIATYPE_TORRENT[]; }; } // namespace aria2 #endif // D_METALINK_METAURL_H