From b3d69bc12a476e9c25c282defa3682a4d6cdbc17 Mon Sep 17 00:00:00 2001 From: Duncan Mac-Vicar P Date: Fri, 27 Jan 2006 18:09:33 +0000 Subject: [PATCH] now lets fill the data --- zypp/source/susetags/SuseTagsSelectionImpl.h | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/zypp/source/susetags/SuseTagsSelectionImpl.h b/zypp/source/susetags/SuseTagsSelectionImpl.h index 86cbcdc..df756d8 100644 --- a/zypp/source/susetags/SuseTagsSelectionImpl.h +++ b/zypp/source/susetags/SuseTagsSelectionImpl.h @@ -34,6 +34,37 @@ namespace zypp public: SuseTagsSelectionImpl(); virtual ~SuseTagsSelectionImpl(); + + private: + /* + virtual std::list suggests() const; + virtual std::list recommends() const; + virtual std::list insnotify( const LangCode & lang = LangCode("") ) const; + virtual std::list delnotify( const LangCode & lang = LangCode("") ) const; + virtual ByteCount size() const; + virtual bool providesSources() const; + virtual std::string instSrcLabel() const; + virtual Vendor instSrcVendor() const; + virtual unsigned instSrcRank() const; + virtual std::list suggests_ptrs() const; + virtual std::list recommends_ptrs() const; + virtual std::list inspacks( const LangCode & lang = LangCode("") ) const; + virtual std::list delpacks( const LangCode & lang = LangCode("") ) const; + virtual PM::LocaleSet supportedLocales() const; + virtual std::set pureInspacks_ptrs( const LangCode & lang ) const; + virtual std::set inspacks_ptrs( const LangCode & lang ) const; + virtual std::set delpacks_ptrs( const LangCode & lang ) const; + virtual bool isBase() const; + virtual PMError provideSelToInstall( Pathname & path_r ) const; + */ + std::set _suggests; + std::set _recommends; + std::set _supported_locales; + std::map< std::string, std::set > _insnotify; + std::map< std::string, std::set > _delnotify; + std::map< std::string, std::set > _inspacks; + std::map< std::string, std::set > _delpacks; + }; /////////////////////////////////////////////////////////////////// -- 2.7.4