libzypp 17.31.23
VendorSupportOptions.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_VendorSupportOptions_H
13#define ZYPP_VendorSupportOptions_H
14
15#include <string>
16#include <zypp/base/Flags.h>
17
18namespace zypp
19{
20
22 {
60 VendorSupportLevel3 = (1<<4)
61 };
62
63 // Make a flag set for this
65 ZYPP_DECLARE_OPERATORS_FOR_FLAGS(VendorSupportOptions)
66
67
74 std::string asUserString( VendorSupportOption );
75
84
85}
86
87#endif
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
std::string asUserString(VendorSupportOption opt)
converts the support option to a name intended to be printed to the user.
@ VendorSupportACC
Additional Customer Contract necessary.
@ VendorSupportLevel3
Problem resolution, which means technical support designed to resolve complex problems by engaging en...
@ VendorSupportUnknown
The support for this package is unknown.
@ VendorSupportLevel1
Problem determination, which means technical support designed to provide compatibility information,...
@ VendorSupportUnsupported
The package is known to be unsupported by the vendor.
@ VendorSupportLevel2
Problem isolation, which means technical support designed to duplicate customer problems,...
std::string asUserStringDescription(VendorSupportOption opt)
converts the support option to a description intended to be printed to the user.
#define ZYPP_DECLARE_OPERATORS_FOR_FLAGS(Name)
Definition: Flags.h:177
#define ZYPP_DECLARE_FLAGS(Name, Enum)
Definition: Flags.h:174