libzypp 17.31.23
Status.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_UI_STATUS_H
13#define ZYPP_UI_STATUS_H
14
15#include <iosfwd>
16#include <string>
17
19namespace zypp
20{
22 namespace ui
23 {
24
34 enum Status
35 {
36 S_Protected, // Keep this unmodified ( have installedObj && S_Protected )
37 S_Taboo, // Keep this unmodified ( have no installedObj && S_Taboo)
38 // requested by user:
39 S_Del, // delete installedObj ( clears S_Protected if set )
40 S_Update, // install candidateObj ( have installedObj, clears S_Protected if set )
41 S_Install, // install candidateObj ( have no installedObj, clears S_Taboo if set )
42 // not requested by user:
43 S_AutoDel, // delete installedObj
44 S_AutoUpdate, // install candidateObj ( have installedObj )
45 S_AutoInstall, // install candidateObj ( have no installedObj )
46 // no modification:
47 S_KeepInstalled, // no modification ( have installedObj && !S_Protected, clears S_Protected if set )
48 S_NoInst, // no modification ( have no installedObj && !S_Taboo, clears S_Taboo if set )
49 };
50
52
54 std::string asString( const Status & obj );
55
57
59 inline std::ostream & operator<<( std::ostream & str, const Status & obj )
60 { return str << asString( obj ); }
61
63 } // namespace ui
66} // namespace zypp
68#endif // ZYPP_UI_STATUS_H
String related utilities and Regular expression matching.
Status
UI status Status values calculated by Selectable.
Definition: Status.h:35
@ S_AutoUpdate
Definition: Status.h:44
@ S_Taboo
Definition: Status.h:37
@ S_AutoInstall
Definition: Status.h:45
@ S_Install
Definition: Status.h:41
@ S_AutoDel
Definition: Status.h:43
@ S_NoInst
Definition: Status.h:48
@ S_Protected
Definition: Status.h:36
@ S_KeepInstalled
Definition: Status.h:47
@ S_Del
Definition: Status.h:39
@ S_Update
Definition: Status.h:40
std::ostream & operator<<(std::ostream &str, const Selectable &obj)
Definition: Selectable.cc:327
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2