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 00023 std::string ProductImplIf::type() const 00024 { return std::string(); } 00025 00026 Url ProductImplIf::releaseNotesUrl() const 00027 { return Url(); } 00028 00029 std::list<Url> ProductImplIf::updateUrls() const 00030 { return std::list<Url>(); } 00031 00032 std::list<Url> ProductImplIf::extraUrls() const 00033 { return std::list<Url>(); } 00034 00035 std::list<Url> ProductImplIf::optionalUrls() const 00036 { return std::list<Url>(); } 00037 00038 std::list<std::string> ProductImplIf::flags() const 00039 { return std::list<std::string>(); } 00040 00041 TranslatedText ProductImplIf::shortName() const 00042 { return TranslatedText(); } 00043 00044 std::string ProductImplIf::distributionName() const 00045 { return std::string(); } 00046 00047 Edition ProductImplIf::distributionEdition() const 00048 { return Edition(); } 00049 00051 00053 } // namespace detail 00056 } // namespace zypp 00058
1.5.3