libzypp  15.28.6
RpmFlags.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_TARGET_RPM_RPMFLAGS_H
13 #define ZYPP_TARGET_RPM_RPMFLAGS_H
14 
15 #include <iosfwd>
16 
17 #include "zypp/base/Flags.h"
18 
20 namespace zypp
21 {
22  namespace target
24  {
25  namespace rpm
27  {
28 
38  {
39  RPMINST_NONE = 0x0000,
42  RPMINST_FORCE = 0x0004,
43  RPMINST_NODEPS = 0x0008,
45  RPMINST_JUSTDB = 0x0020,
46  RPMINST_NODIGEST = 0x0040,
49  RPMINST_TEST = 0x0200,
51  };
52 
55 
57  } // namespace rpm
60  } // namespace target
63 } // namespace zypp
65 #endif // ZYPP_TARGET_RPM_RPMFLAGS_H
#define ZYPP_DECLARE_FLAGS_AND_OPERATORS(Name, Enum)
Definition: Flags.h:189
RpmInstFlag
Bits representing rpm installation options.
Definition: RpmFlags.h:37