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::category() const 00039 { return _category; } 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<std::string> XMLProductImpl::flags() const 00051 { return _flags; } 00052 00054 } // namespace detail 00057 } // namespace zypp