Imported Upstream version 17.23.0
[platform/upstream/libzypp.git] / zypp / pool / PoolImpl.cc
index 1dab871..c10c8f0 100644 (file)
 #include "zypp/base/LogTools.h"
 
 #include "zypp/pool/PoolImpl.h"
-#include "zypp/pool/PoolStats.h"
-#include "zypp/Package.h"
-#include "zypp/VendorAttr.h"
-
-#include "zypp/sat/Pool.h"
-#include "zypp/sat/Repo.h"
 
 using std::endl;
 
@@ -26,10 +20,11 @@ using std::endl;
 namespace zypp
 { /////////////////////////////////////////////////////////////////
 
-  std::ostream & operator<<( std::ostream & str, const CapAndItem & obj )
-  {
-    return str << "{" << obj.cap << ", " << obj.item << "}";
-  }
+  ResPool::EstablishedStates::~EstablishedStates()
+  {}
+
+  ResPool::EstablishedStates::ChangedPseudoInstalled ResPool::EstablishedStates::changedPseudoInstalled() const
+  { return _pimpl->changedPseudoInstalled(); }
 
   ///////////////////////////////////////////////////////////////////
   namespace pool
@@ -57,17 +52,6 @@ namespace zypp
     PoolImpl::~PoolImpl()
     {}
 
-    /******************************************************************
-    **
-    ** FUNCTION NAME : operator<<
-    ** FUNCTION TYPE : std::ostream &
-    */
-    std::ostream & operator<<( std::ostream & str, const PoolImpl & obj )
-    {
-      return dumpPoolStats( str << "ResPool " << obj.satpool() << endl << "  ",
-                            obj.begin(), obj.end() );
-    }
-
     /////////////////////////////////////////////////////////////////
   } // namespace pool
   ///////////////////////////////////////////////////////////////////