installed class ByteCount to maintain sizes measured in Byte.
[platform/upstream/libzypp.git] / zypp / detail / ScriptImplIf.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/detail/ScriptImplIf.cc
10  *
11 */
12 #include "zypp/detail/ScriptImplIf.h"
13
14 ///////////////////////////////////////////////////////////////////
15 namespace zypp
16 { /////////////////////////////////////////////////////////////////
17   ///////////////////////////////////////////////////////////////////
18   namespace detail
19   { /////////////////////////////////////////////////////////////////
20
21     /////////////////////////////////////////////////////////////////
22     // Default implementation of ScriptImplIf attributes,
23     // as far as resonable.
24     /////////////////////////////////////////////////////////////////
25
26       ByteCount ScriptImplIf::size() const
27       { return ResObjectImplIf::size(); }
28
29     /////////////////////////////////////////////////////////////////
30   } // namespace detail
31   ///////////////////////////////////////////////////////////////////
32   /////////////////////////////////////////////////////////////////
33 } // namespace zypp
34 ///////////////////////////////////////////////////////////////////