- Use SolvAttr to keep the ids of attributes in a nice way
[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
29
30 } // namespace sat
31   /////////////////////////////////////////////////////////////////
32 } // namespace zypp
33 ///////////////////////////////////////////////////////////////////