00001 /*---------------------------------------------------------------------\ 00002 | ____ _ __ __ ___ | 00003 | |__ / \ / / . \ . \ | 00004 | / / \ V /| _/ _/ | 00005 | / /__ | | | | | | | 00006 | /_____||_| |_| |_| | 00007 | | 00008 \---------------------------------------------------------------------*/ 00012 #ifndef ZYPP_DETAIL_MESSAGEIMPL_H 00013 #define ZYPP_DETAIL_MESSAGEIMPL_H 00014 00015 #include "zypp/detail/MessageImplIf.h" 00016 00018 namespace zypp 00019 { 00020 00021 namespace detail 00022 { 00023 00025 // 00026 // CLASS NAME : MessageImpl 00027 // 00029 class MessageImpl : public MessageImplIf 00030 { 00031 public: 00033 MessageImpl(); 00035 virtual ~MessageImpl(); 00036 00037 public: 00039 virtual TranslatedText text() const; 00040 protected: 00042 TranslatedText _text; 00043 }; 00045 00047 } // namespace detail 00050 } // namespace zypp 00052 #endif // ZYPP_DETAIL_MESSAGEIMPL_H