00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00013 #include <iostream> 00014 00015 #include "zypp/ZYppCommitResult.h" 00016 00018 namespace zypp 00019 { 00020 00021 std::ostream & operator<<( std::ostream & str, const ZYppCommitResult & obj ) 00022 { 00023 str << "CommitResult " << obj._result 00024 << " (errors " << obj._errors.size() 00025 << ", remaining " << obj._remaining.size() 00026 << ", srcremaining " << obj._srcremaining.size() 00027 << ")"; 00028 return str; 00029 } 00030 00032 } // namespace zypp