libzypp
17.14.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
Dep.h
Go to the documentation of this file.
1
/*---------------------------------------------------------------------\
2
| ____ _ __ __ ___ |
3
| |__ / \ / / . \ . \ |
4
| / / \ V /| _/ _/ |
5
| / /__ | | | | | | |
6
| /_____||_| |_| |_| |
7
| |
8
\---------------------------------------------------------------------*/
12
#ifndef ZYPP_DEP_H
13
#define ZYPP_DEP_H
14
15
#include <iosfwd>
16
#include <string>
17
19
namespace
zypp
20
{
21
23
//
24
// CLASS NAME : Dep
25
//
29
struct
Dep
30
{
31
friend
bool
operator==
(
const
Dep
& lhs,
const
Dep
& rhs );
32
friend
bool
operator!=
(
const
Dep
& lhs,
const
Dep
& rhs );
34
friend
bool
operator<
(
const
Dep
& lhs,
const
Dep
& rhs );
35
42
static
const
Dep
PROVIDES
;
43
static
const
Dep
PREREQUIRES
;
44
static
const
Dep
REQUIRES
;
45
static
const
Dep
CONFLICTS
;
46
static
const
Dep
OBSOLETES
;
47
static
const
Dep
RECOMMENDS
;
48
static
const
Dep
SUGGESTS
;
49
static
const
Dep
ENHANCES
;
50
static
const
Dep
SUPPLEMENTS
;
52
56
enum
for_use_in_switch
{
57
PROVIDES_e
,
58
PREREQUIRES_e
,
59
REQUIRES_e
,
60
CONFLICTS_e
,
61
OBSOLETES_e
,
62
RECOMMENDS_e
,
63
SUGGESTS_e
,
64
ENHANCES_e
,
65
SUPPLEMENTS_e
,
66
};
67
75
explicit
76
Dep
(
const
std::string & strval_r );
77
81
const
std::string &
asString
()
const
;
82
86
std::string
asUserString
()
const
;
87
89
for_use_in_switch
inSwitch
()
const
90
{
return
_type
; }
91
92
private
:
94
Dep
(
for_use_in_switch
type_r )
95
:
_type
( type_r )
96
{}
98
for_use_in_switch
_type
;
99
};
101
103
inline
std::ostream &
operator<<
( std::ostream & str,
const
Dep
& obj )
104
{
return
str << obj.
asString
(); }
105
107
109
inline
bool
operator==
(
const
Dep
& lhs,
const
Dep
& rhs )
110
{
return
lhs.
_type
== rhs.
_type
; }
111
113
inline
bool
operator!=
(
const
Dep
& lhs,
const
Dep
& rhs )
114
{
return
lhs.
_type
!= rhs.
_type
; }
115
117
inline
bool
operator<
(
const
Dep
& lhs,
const
Dep
& rhs )
118
{
return
lhs.
_type
< rhs.
_type
; }
119
121
}
// namespace zypp
123
#endif // ZYPP_DEP_H
zypp
Dep.h
Generated by
1.8.2