libzypp  10.5.0
Signature.h
Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                          ____ _   __ __ ___                          |
00003 |                         |__  / \ / / . \ . \                         |
00004 |                           / / \ V /|  _/  _/                         |
00005 |                          / /__ | | | | | |                           |
00006 |                         /_____||_| |_| |_|                           |
00007 |                                                                      |
00008 \---------------------------------------------------------------------*/
00009 
00010 
00011 #ifndef ZYPP_Signature_H
00012 #define ZYPP_Signature_H
00013 
00015 namespace zypp
00016 { 
00017   
00018   class Signature
00019   {
00020     public:
00021     Signature();
00022     ~Signature();
00023     
00025     std::ostream & dumpOn( std::ostream & str ) const;
00026     
00027     private:
00028   };  
00029   
00031   inline std::ostream & operator<<( std::ostream & str, const Signature & obj )
00032   { return obj.dumpOn( str ); }  
00033   
00035 } // namespace zypp
00037 #endif // ZYPP_Signature_H