libzypp 17.31.23
RepoIndex.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_PARSER_SUSETAGS_REPOINDEX_H
13#define ZYPP_PARSER_SUSETAGS_REPOINDEX_H
14
15#include <iosfwd>
16#include <list>
17#include <map>
18
19#include <zypp/base/ReferenceCounted.h>
20#include <zypp/base/NonCopyable.h>
21#include <zypp/base/PtrTypes.h>
22
23#include <zypp/Arch.h>
24#include <zypp/CheckSum.h>
25#include <zypp/Pathname.h>
26#include <zypp/Locale.h>
27
29namespace zypp
30{
32 namespace parser
33 {
35 namespace susetags
36 {
37
38 DEFINE_PTR_TYPE(RepoIndex);
39
41 //
42 // CLASS NAME : RepoIndex
43 //
49 {
50 friend class ContentFileReader;
51 public:
52 typedef std::map<std::string, CheckSum> FileChecksumMap;
53
56
60
61 protected:
63 virtual std::ostream & dumpOn( std::ostream & str ) const;
64 };
66
68 } // namespace susetags
71 } // namespace parser
74} // namespace zypp
76#endif // ZYPP_PARSER_SUSETAGS_REPOINDEX_H
Base class for reference counted objects.
Parse repoindex part from a content file.
Repository content data (from /content file).
Definition: RepoIndex.h:49
FileChecksumMap metaFileChecksums
Definition: RepoIndex.h:57
virtual std::ostream & dumpOn(std::ostream &str) const
Overload to realize std::ostream & operator<<.
Definition: RepoIndex.cc:33
FileChecksumMap mediaFileChecksums
Definition: RepoIndex.h:58
std::map< std::string, CheckSum > FileChecksumMap
Definition: RepoIndex.h:52
String related utilities and Regular expression matching.
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
#define DEFINE_PTR_TYPE(NAME)
Forward declaration of Ptr types.
Definition: PtrTypes.h:623