d8ab86315fe27adae43dd33e9fee7858375687cf
[platform/upstream/libzypp.git] / zypp / ResObject.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/ResObject.h
10  *
11 */
12 #ifndef ZYPP_RESOBJECT_H
13 #define ZYPP_RESOBJECT_H
14
15 #include "zypp/Resolvable.h"
16 #include "zypp/detail/ResObjectImplIf.h"
17
18 ///////////////////////////////////////////////////////////////////
19 namespace zypp
20 { /////////////////////////////////////////////////////////////////
21
22   ///////////////////////////////////////////////////////////////////
23   //
24   //    CLASS NAME : ResObject
25   //
26   /** Interface base for resolvable objects (common data).
27   */
28   class ResObject : public Resolvable
29   {
30   public:
31     typedef ResObject                       Self;
32     typedef detail::ResObjectImplIf         Impl;
33     typedef base::intrusive_ptr<Self>       Ptr;
34     typedef base::intrusive_ptr<const Self> constPtr;
35
36   public:
37     /** */
38     line summary() const;
39     /** */
40     text description() const;
41
42   protected:
43     /** Ctor */
44     ResObject( const ResKind & kind_r,
45                const std::string & name_r,
46                const Edition & edition_r,
47                const Arch & arch_r );
48     /** Dtor */
49     virtual ~ResObject();
50
51   private:
52     /** Access implementation */
53     virtual Impl & pimpl() = 0;
54     /** Access implementation */
55     virtual const Impl & pimpl() const = 0;
56   };
57   ///////////////////////////////////////////////////////////////////
58
59   /////////////////////////////////////////////////////////////////
60 } // namespace zypp
61 ///////////////////////////////////////////////////////////////////
62 #endif // ZYPP_RESOBJECT_H