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 License ProductImplIf::licenseToConfirm() const 00041 { return License(); } 00042 00043 TranslatedText ProductImplIf::shortName() const 00044 { return TranslatedText(); } 00045 00047 00049 } // namespace detail 00052 } // namespace zypp 00054
1.4.6