libzypp 17.31.23
Signature.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
9
10
11#ifndef ZYPP_Signature_H
12#define ZYPP_Signature_H
13
15namespace zypp
16{
17
19 {
20 public:
21 Signature();
23
25 std::ostream & dumpOn( std::ostream & str ) const;
26
27 private:
28 };
29
31 inline std::ostream & operator<<( std::ostream & str, const Signature & obj )
32 { return obj.dumpOn( str ); }
33
35} // namespace zypp
37#endif // ZYPP_Signature_H
std::ostream & dumpOn(std::ostream &str) const
Overload to realize stream output.
Definition: Signature.cc:23
std::ostream & operator<<(std::ostream &str, const Signature &obj)
Stream output.
Definition: Signature.h:31
String related utilities and Regular expression matching.
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2