Imported Upstream version 17.23.5
[platform/upstream/libzypp.git] / zypp / Signature.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9
10 #include <string>
11 #include <iostream>
12 #include <zypp/Signature.h>
13
14 ///////////////////////////////////////////////////////////////////
15 namespace zypp
16 { /////////////////////////////////////////////////////////////////
17
18   Signature::Signature()
19   {
20       
21   }
22     
23   std::ostream & Signature::dumpOn( std::ostream & str ) const
24   {
25     return str;
26   }
27   
28   /////////////////////////////////////////////////////////////////
29 } // namespace zypp
30 ///////////////////////////////////////////////////////////////////