libzypp 17.31.23
ProvideFilePolicy.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
9
10#include <iostream>
11#include <fstream>
12#include <sstream>
13#include <zypp/base/Logger.h>
14
16
17using std::endl;
18
20namespace zypp
21{
23 //
24 // CLASS NAME : ProvideFilePolicy
25 //
27
28 bool ProvideFilePolicy::progress( int value ) const
29 {
30 if ( _progressCB )
31 return _progressCB( value );
32 return true;
33 }
34
35} // namespace zypp
bool progress(int value) const
Evaluate callback.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2