/* */ #include "MetalinkMetaurl.h" #include "MetalinkResource.h" namespace aria2 { const char MetalinkMetaurl::MEDIATYPE_TORRENT[] = "torrent"; MetalinkMetaurl::MetalinkMetaurl(): priority(MetalinkResource::getLowestPriority()) {} MetalinkMetaurl::MetalinkMetaurl (const std::string& url, const std::string& mediatype, const std::string& name, int priority): url(url), mediatype(mediatype), name(name), priority(priority) {} MetalinkMetaurl::~MetalinkMetaurl() {} } // namespace aria2