5d0adf8879077ec7f872ff5feed33c6e35df79fe
[platform/upstream/libzypp.git] / zypp / detail / ProductImplIf.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/detail/ProductImplIf.cc
10  *
11 */
12
13 #include "zypp/detail/ProductImplIf.h"
14
15 ///////////////////////////////////////////////////////////////////
16 namespace zypp
17 { /////////////////////////////////////////////////////////////////
18
19   ///////////////////////////////////////////////////////////////////
20   namespace detail
21   { /////////////////////////////////////////////////////////////////
22
23       /** Get the category of the product - addon or base*/
24       std::string ProductImplIf::category() const 
25       { return std::string(); } 
26
27       /** Get the vendor of the product */
28       Label ProductImplIf::vendor() const 
29       { return Label(); } 
30
31       Url ProductImplIf::releaseNotesUrl() const
32       { return Url(); }
33
34       std::list<Url> ProductImplIf::updateUrls() const
35       { return std::list<Url>(); }
36
37       std::list<std::string> ProductImplIf::flags() const
38       { return std::list<std::string>(); }
39       
40       License ProductImplIf::licenseToConfirm() const
41       { return License(); }
42
43       TranslatedText ProductImplIf::shortName() const
44       { return TranslatedText(); }
45
46     ///////////////////////////////////////////////////////////////////
47
48     /////////////////////////////////////////////////////////////////
49   } // namespace detail
50   ///////////////////////////////////////////////////////////////////
51   /////////////////////////////////////////////////////////////////
52 } // namespace zypp
53 ///////////////////////////////////////////////////////////////////
54