00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00012 #include "zypp/detail/SrcPackageImplIf.h" 00013 #include <iostream> 00014 00015 using namespace std; 00016 00018 namespace zypp 00019 { 00020 00021 namespace detail 00022 { 00023 00025 // Default implementation of SrcPackageImplIf attributes, 00026 // as far as resonable. 00028 00029 ByteCount SrcPackageImplIf::archivesize() const 00030 { return ByteCount(); } 00031 00032 DiskUsage SrcPackageImplIf::diskusage() const 00033 { return DiskUsage(); } 00034 00035 Pathname SrcPackageImplIf::location() const 00036 { return Pathname(); } 00037 00039 } // namespace detail 00042 } // namespace zypp