- Create the cache directly from the schema (installed) file.
[platform/upstream/libzypp.git] / zypp / Message.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Message.h
10  *
11 */
12 #ifndef ZYPP_MESSAGE_H
13 #define ZYPP_MESSAGE_H
14
15 #include "zypp/ResObject.h"
16 #include "zypp/detail/MessageImplIf.h"
17
18 ///////////////////////////////////////////////////////////////////
19 namespace zypp
20 { /////////////////////////////////////////////////////////////////
21
22   ///////////////////////////////////////////////////////////////////
23   //
24   //    CLASS NAME : Message
25   //
26   /** Class representing the message to be shown during update.
27   */
28   class Message : public ResObject
29   {
30   public:
31     typedef detail::MessageImplIf           Impl;
32     typedef Message                         Self;
33     typedef ResTraits<Self>          TraitsType;
34     typedef TraitsType::PtrType      Ptr;
35     typedef TraitsType::constPtrType constPtr;
36
37   public:
38     /** Get the text of the message */
39     TranslatedText text() const;
40     /** Patch the message belongs to - if any */
41     Patch::constPtr patch() const;
42
43   protected:
44     Message( const NVRAD & nvrad_r );
45     /** Dtor */
46     virtual ~Message();
47
48   private:
49     /** Access implementation */
50     virtual Impl & pimpl() = 0;
51     /** Access implementation */
52     virtual const Impl & pimpl() const = 0;
53   };
54
55   /////////////////////////////////////////////////////////////////
56 } // namespace zypp
57 ///////////////////////////////////////////////////////////////////
58 #endif // ZYPP_MESSAGE_H