00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00013 #include "zypp/target/store/xml/XMLProductImpl.h" 00014 #include "zypp/base/Logger.h" 00015 00016 using namespace std; 00017 00019 namespace zypp 00020 { 00021 00022 namespace storage 00023 { 00024 00026 // 00027 // CLASS NAME : XMLProductImpl 00028 // 00030 00032 XMLProductImpl::XMLProductImpl() 00033 {} 00035 XMLProductImpl::~XMLProductImpl() 00036 {} 00037 00038 std::string XMLProductImpl::type() const 00039 { return _type; } 00040 00041 TranslatedText XMLProductImpl::shortName() const 00042 { return _short_name; } 00043 00044 Url XMLProductImpl::releaseNotesUrl() const 00045 { return _release_notes_url; } 00046 00047 std::list<Url> XMLProductImpl::updateUrls() const 00048 { return _update_urls; } 00049 00050 std::list<Url> XMLProductImpl::extraUrls() const 00051 { return _extra_urls; } 00052 00053 std::list<Url> XMLProductImpl::optionalUrls() const 00054 { return _optional_urls; } 00055 00056 std::list<std::string> XMLProductImpl::flags() const 00057 { return _flags; } 00058 00059 std::string XMLProductImpl::distributionName() const 00060 { return _dist_name; } 00061 00062 Edition XMLProductImpl::distributionEdition() const 00063 { return _dist_version; } 00064 00066 } // namespace detail 00069 } // namespace zypp
1.5.3