libzypp 17.38.6
capability.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8----------------------------------------------------------------------/
9*
10* This file contains private API, this might break at any time between releases.
11* You have been warned!
12*
13*/
14
15#ifndef ZYPP_NG_LOG_SAT_CAPABILITY_H_INCLUDED
16#define ZYPP_NG_LOG_SAT_CAPABILITY_H_INCLUDED
17
18#include <zypp/ng/log/format.h>
19#include <iosfwd>
21
22namespace zyppng {
23
24 namespace sat {
25 class Capability;
26 class CapDetail;
27 }
28
29 namespace log {
30 template <>
32 static std::ostream& stream(std::ostream& str, const sat::Capability &obj );
33 };
34
35 template <>
37 static std::ostream& stream(std::ostream& str, const sat::CapDetail &obj );
38 };
39
40 template <>
42 static std::ostream& stream(std::ostream& str, const sat::CapDetail::Kind &obj );
43 };
44
45 template <>
47 static std::ostream& stream(std::ostream& str, const sat::CapDetail::CapRel &obj );
48 };
49 }
50
51}
52#endif
Helper providing more detailed information about a Capability.
Definition Capability.h:366
CapRel
Enum values corresponding with libsolv defines.
Definition Capability.h:380
A sat capability.
Definition Capability.h:63
Helper providing more detailed information about a Capability.
Definition capability.h:339
CapRel
Enum values corresponding with libsolv defines.
Definition capability.h:353
A sat capability.
Definition capability.h:74
String related utilities and Regular expression matching.
Libsolv interface
This file contains private API, this might break at any time between releases.
static std::ostream & stream(std::ostream &str, const sat::CapDetail &obj)
Definition capability.cc:32
static std::ostream & stream(std::ostream &str, const sat::CapDetail::CapRel &obj)
Definition capability.cc:92
static std::ostream & stream(std::ostream &str, const sat::CapDetail::Kind &obj)
Definition capability.cc:80
static std::ostream & stream(std::ostream &str, const sat::Capability &obj)
Definition capability.cc:27
Primary trait for object formatting.
Definition format.h:67