/* */ #include "DownloadContext.h" namespace aria2 { DownloadContext::DownloadContext():_dir(".") {} DownloadContext::~DownloadContext() {} const std::string& DownloadContext::getDir() const { return _dir; } void DownloadContext::setDir(const std::string& dir) { _dir = dir; } SharedHandle DownloadContext::getSignature() const { return _signature; } void DownloadContext::setSignature(const SharedHandle& signature) { _signature = signature; } } // namespace aria2