libzypp  11.13.5
RepoIndex.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #include <iostream>
13 #include "zypp/base/LogTools.h"
14 
16 
17 using std::endl;
18 #undef ZYPP_BASE_LOGGER_LOGGROUP
19 #define ZYPP_BASE_LOGGER_LOGGROUP "parser::susetags"
20 
22 namespace zypp
23 {
24 
25  namespace parser
26  {
27 
28  namespace susetags
29  {
30 
31  IMPL_PTR_TYPE(RepoIndex);
32 
33  std::ostream & RepoIndex::dumpOn( std::ostream & str ) const
34  {
35  return str
36  << "RepoIndex checksums: META files " << metaFileChecksums.size()
37  << ", HASH files " << mediaFileChecksums.size()
38  << ", KEY files " << signingKeys.size();
39  }
40 
42  } // namespace susetags
45  } // namespace parser
48 } // namespace zypp