#include <RepomdFileReader.h>
Public Types | |
| typedef function < bool(const OnMediaLocation &, const repo::yum::ResourceType &)> | ProcessResource |
| Callback definition. | |
Public Member Functions | |
| RepomdFileReader (const Pathname &repomd_file, const ProcessResource &callback) | |
| CTOR. | |
| ~RepomdFileReader () | |
| DTOR. | |
Private Attributes | |
| RW_pointer< Impl, rw_pointer::Scoped < Impl > > | _pimpl |
Classes | |
| class | Impl |
After each package is read, a OnMediaLocation and repo::yum::ResourceType is prepared and _callback is called with these two objects passed in.
The _callback is provided on construction.
RepomdFileReader reader(repomd_file, bind( &SomeClass::callbackfunc, &SomeClassInstance, _1, _2 ) );
Definition at line 46 of file RepomdFileReader.h.
| typedef function< bool( const OnMediaLocation &, const repo::yum::ResourceType &)> zypp::parser::yum::RepomdFileReader::ProcessResource |
Callback definition.
First parameter is a OnMediaLocation object with the resource second parameter is the resource type.
Definition at line 57 of file RepomdFileReader.h.
| zypp::parser::yum::RepomdFileReader::RepomdFileReader | ( | const Pathname & | repomd_file, | |
| const ProcessResource & | callback | |||
| ) |
CTOR.
Creates also xml::Reader and starts reading.
| repomd_file | is the repomd.xml file you want to read | |
| callback | is a function. |
Definition at line 190 of file RepomdFileReader.cc.
| zypp::parser::yum::RepomdFileReader::~RepomdFileReader | ( | ) |
Definition at line 76 of file RepomdFileReader.h.
1.5.3