Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions zypp/ZYppCallbacks.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ namespace zypp
};

// progress for probing a source
struct ZYPP_API ProbeRepoReport : public callback::ReportBase
/** \deprecated Is not sent by zypp. */
struct ZYPP_API ZYPP_DEPRECATED ProbeRepoReport : public callback::ReportBase
{
enum Action {
ABORT, // abort and return error
Expand All @@ -222,7 +223,8 @@ namespace zypp
virtual Action problem( const Url &/*url*/, Error /*error*/, const std::string &/*description*/ ) { return ABORT; }
};

struct ZYPP_API RepoCreateReport : public callback::ReportBase
/** \deprecated Is not sent by zypp. */
struct ZYPP_API ZYPP_DEPRECATED RepoCreateReport : public callback::ReportBase
{
enum Action {
ABORT, // abort and return error
Expand Down Expand Up @@ -256,7 +258,8 @@ namespace zypp
{}
};

struct ZYPP_API RepoReport : public callback::ReportBase
/** \deprecated Is not sent by zypp. */
struct ZYPP_API ZYPP_DEPRECATED RepoReport : public callback::ReportBase
{
enum Action {
ABORT, // abort and return error
Expand Down