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<Url> ProductImplIf::extraUrls() const 00038 { return std::list<Url>(); } 00039 00040 std::list<Url> ProductImplIf::optionalUrls() const 00041 { return std::list<Url>(); } 00042 00043 std::list<std::string> ProductImplIf::flags() const 00044 { return std::list<std::string>(); } 00045 00046 TranslatedText ProductImplIf::shortName() const 00047 { return TranslatedText(); } 00048 00049 std::string ProductImplIf::distributionName() const 00050 { return std::string(); } 00051 00052 Edition ProductImplIf::distributionEdition() const 00053 { return Edition(); } 00054 00056 00058 } // namespace detail 00061 } // namespace zypp 00063
1.5.0