libzypp  13.10.6
Signature.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
9 
10 #include <string>
11 #include <iostream>
12 #include "zypp/Signature.h"
13 
15 namespace zypp
16 {
17 
19  {
20 
21  }
22 
23  std::ostream & Signature::dumpOn( std::ostream & str ) const
24  {
25  return str;
26  }
27 
29 } // namespace zypp
std::ostream & dumpOn(std::ostream &str) const
Overload to realize stream output.
Definition: Signature.cc:23