libzypp  11.13.5
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 
18 namespace zypp
19 {
20 
22  {
34  VendorSupportACC = (1<<1),
61  };
62 
63  // Make a flag set for this
64  ZYPP_DECLARE_FLAGS(VendorSupportOptions,VendorSupportOption);
65  ZYPP_DECLARE_OPERATORS_FOR_FLAGS(VendorSupportOptions)
66 
67 
74  std::string asUserString( VendorSupportOption );
75 
83  std::string asUserStringDescription( VendorSupportOption );
84 
85 }
86 
87 #endif