- retrieving attributes, 1st version... does not support translations yet
[platform/upstream/libzypp.git] / zypp / sat / SolvAttr.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/SolvAttr.cc
10  *
11 */
12 #include <iostream>
13
14 #include "zypp/base/String.h"
15
16 #include "zypp/sat/SolvAttr.h"
17
18 using std::endl;
19
20 ///////////////////////////////////////////////////////////////////
21 namespace zypp
22 { /////////////////////////////////////////////////////////////////
23 namespace sat
24 { /////////////////////////////////////////////////////////////////
25
26   const SolvAttr SolvAttr::summary      ( "summary" );
27   const SolvAttr SolvAttr::description  ( "description" );
28   const SolvAttr SolvAttr::insnotify    ( "insnotify" );
29   const SolvAttr SolvAttr::delnotify    ( "delnotify" );
30   const SolvAttr SolvAttr::vendor       ( "vendor" );
31   const SolvAttr SolvAttr::license      ( "license" );
32   const SolvAttr SolvAttr::size         ( "size" );
33   const SolvAttr SolvAttr::downloadsize ( "downloadsize" );
34
35 } // namespace sat
36   /////////////////////////////////////////////////////////////////
37 } // namespace zypp
38 ///////////////////////////////////////////////////////////////////