Imported Upstream version 17.23.0
[platform/upstream/libzypp.git] / zypp / PoolQueryResult.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/PoolQueryResult.cc
10  *
11 */
12 #include <iostream>
13 #include "zypp/base/LogTools.h"
14
15 #include "zypp/PoolQueryResult.h"
16
17 using std::endl;
18
19 ///////////////////////////////////////////////////////////////////
20 namespace zypp
21 { /////////////////////////////////////////////////////////////////
22
23   /******************************************************************
24   **
25   **    FUNCTION NAME : operator<<
26   **    FUNCTION TYPE : std::ostream &
27   */
28   std::ostream & operator<<( std::ostream & str, const PoolQueryResult & obj )
29   {
30     return dumpRange( str, obj.begin(), obj.end() );
31   }
32
33   /////////////////////////////////////////////////////////////////
34 } // namespace zypp
35 ///////////////////////////////////////////////////////////////////