libzypp  10.5.0
RepoIndex.cc
Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                          ____ _   __ __ ___                          |
00003 |                         |__  / \ / / . \ . \                         |
00004 |                           / / \ V /|  _/  _/                         |
00005 |                          / /__ | | | | | |                           |
00006 |                         /_____||_| |_| |_|                           |
00007 |                                                                      |
00008 \---------------------------------------------------------------------*/
00012 #include <iostream>
00013 #include "zypp/base/LogTools.h"
00014 
00015 #include "zypp/parser/susetags/RepoIndex.h"
00016 
00017 using std::endl;
00018 #undef  ZYPP_BASE_LOGGER_LOGGROUP
00019 #define ZYPP_BASE_LOGGER_LOGGROUP "parser::susetags"
00020 
00022 namespace zypp
00023 { 
00024 
00025   namespace parser
00026   { 
00027 
00028     namespace susetags
00029     { 
00030 
00031       IMPL_PTR_TYPE(RepoIndex);
00032 
00033       std::ostream & RepoIndex::dumpOn( std::ostream & str ) const
00034       {
00035         return str
00036             << "RepoIndex checksums: META files " << metaFileChecksums.size()
00037             << ", HASH files " << mediaFileChecksums.size()
00038             << ", KEY files " << signingKeys.size();
00039       }
00040 
00042     } // namespace susetags
00045   } // namespace parser
00048 } // namespace zypp