- Create the cache directly from the schema (installed) file.
[platform/upstream/libzypp.git] / zypp / ZYppCommitResult.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/ZYppCommitResult.cc
10  *
11 */
12
13 #include <iostream>
14
15 #include "zypp/ZYppCommitResult.h"
16
17 ///////////////////////////////////////////////////////////////////
18 namespace zypp
19 { /////////////////////////////////////////////////////////////////
20
21   std::ostream & operator<<( std::ostream & str, const ZYppCommitResult & obj )
22   {
23     str << "CommitResult " << obj._result
24         << " (errors " << obj._errors.size()
25         << ", remaining " << obj._remaining.size()
26         << ", srcremaining " << obj._srcremaining.size()
27         << ")";
28     return str;
29   }
30
31   /////////////////////////////////////////////////////////////////
32 } // namespace zypp
33 ///////////////////////////////////////////////////////////////////