Remove obsolete ResStatus bits.
[platform/upstream/libzypp.git] / zypp / Changelog.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Changelog.cc
10  *
11 */
12 #include <iostream>
13 #include <set>
14
15 #include "zypp/Changelog.h"
16
17 using namespace std;
18
19 namespace zypp
20 { /////////////////////////////////////////////////////////////////
21
22   /** \relates ChangelogEntry */
23   std::ostream & operator<<( std::ostream & out, const ChangelogEntry & obj )
24   { 
25     out << obj.date() << " " << obj.author() << endl << obj.text() << endl;
26     return out;
27   }
28
29
30   /////////////////////////////////////////////////////////////////
31 } // namespace zypp
32 ///////////////////////////////////////////////////////////////////