00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00012 #include "zypp/source/susetags/SuseTagsProductImpl.h" 00013 00014 using namespace std; 00015 00017 namespace zypp 00018 { 00019 00020 namespace source 00021 { 00022 namespace susetags 00023 { 00025 // 00026 // METHOD NAME : SuseTagsProductImpl::SuseTagsProductImpl 00027 // METHOD TYPE : Ctor 00028 // 00029 SuseTagsProductImpl::SuseTagsProductImpl() 00030 {} 00031 00033 // 00034 // METHOD NAME : SuseTagsProductImpl::~SuseTagsProductImpl 00035 // METHOD TYPE : Dtor 00036 // 00037 SuseTagsProductImpl::~SuseTagsProductImpl() 00038 {} 00039 00040 00041 std::string SuseTagsProductImpl::category() const 00042 { return _category; } 00043 00044 Label SuseTagsProductImpl::vendor() const 00045 { return _vendor; } 00046 00047 TranslatedText SuseTagsProductImpl::summary() const 00048 { return _summary; } 00049 00050 Source_Ref SuseTagsProductImpl::source() const 00051 { return _source; } 00052 00053 Url SuseTagsProductImpl::releaseNotesUrl() const 00054 { return _release_notes_url; } 00055 00056 std::list<Url> SuseTagsProductImpl::updateUrls() const 00057 { return _update_urls; } 00058 00059 std::list<std::string> SuseTagsProductImpl::flags() const 00060 { return _flags; } 00061 00062 TranslatedText SuseTagsProductImpl::shortName() const 00063 { return TranslatedText(_shortlabel); } 00064 00066 } // namespace detail 00068 } 00070 } // namespace zypp