libzypp  10.5.0
Changelog.cc
Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                          ____ _   __ __ ___                          |
00003 |                         |__  / \ / / . \ . \                         |
00004 |                           / / \ V /|  _/  _/                         |
00005 |                          / /__ | | | | | |                           |
00006 |                         /_____||_| |_| |_|                           |
00007 |                                                                      |
00008 \---------------------------------------------------------------------*/
00012 #include <iostream>
00013 #include <set>
00014 
00015 #include "zypp/Changelog.h"
00016 
00017 using namespace std;
00018 
00019 namespace zypp
00020 { 
00021 
00023   std::ostream & operator<<( std::ostream & out, const ChangelogEntry & obj )
00024   { 
00025     out << obj.date() << " " << obj.author() << endl << obj.text() << endl;
00026     return out;
00027   }
00028 
00029 
00031 } // namespace zypp