00001
00002
00003
00004
00005
00006
00007
00008
00013 #include <iostream>
00014
00015 #include "zypp/ZYppCommitPolicy.h"
00016
00018 namespace zypp
00019 {
00020
00021 std::ostream & operator<<( std::ostream & str, const ZYppCommitPolicy & obj )
00022 {
00023 str << "CommitPolicy(";
00024 if ( obj.restrictToMedia() )
00025 str << " restrictToMedia:" << obj.restrictToMedia();
00026 if ( obj.dryRun() )
00027 str << " dryRun";
00028 if ( obj.rpmNoSignature() )
00029 str << " rpmNoSignature";
00030 return str << " )";
00031 }
00032
00034 }