00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00013 #include "zypp/detail/ProductImplIf.h" 00014 00016 namespace zypp 00017 { 00018 00020 namespace detail 00021 { 00022 00024 std::string ProductImplIf::category() const 00025 { return std::string(); } 00026 00028 Label ProductImplIf::vendor() const 00029 { return Label(); } 00030 00031 Url ProductImplIf::releaseNotesUrl() const 00032 { return Url(); } 00033 00034 std::list<Url> ProductImplIf::updateUrls() const 00035 { return std::list<Url>(); } 00036 00037 std::list<std::string> ProductImplIf::flags() const 00038 { return std::list<std::string>(); } 00039 00040 TranslatedText ProductImplIf::shortName() const 00041 { return TranslatedText(); } 00042 00044 00046 } // namespace detail 00049 } // namespace zypp 00051