diff options
author | Julian Andres Klode <jak@debian.org> | 2020-02-26 20:26:42 +0000 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2020-02-26 20:26:42 +0000 |
commit | be22f24669bb6731b5835dc0e1b459d821683a9c (patch) | |
tree | a7937ab9aba3556760f0040727066a84a41f0006 /apt-pkg/cacheset.h | |
parent | c38e0047d95305e5984e822f670055cde6aa5f6a (diff) | |
parent | db678df196ccd8f9f6fb336706cf5701d1e53aa6 (diff) |
Merge branch 'pu/visibility' into 'master'
apt-pkg: default visibility to hidden
See merge request apt-team/apt!108
Diffstat (limited to 'apt-pkg/cacheset.h')
-rw-r--r-- | apt-pkg/cacheset.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apt-pkg/cacheset.h b/apt-pkg/cacheset.h index bfb9e0abf..eb9e3e523 100644 --- a/apt-pkg/cacheset.h +++ b/apt-pkg/cacheset.h @@ -38,7 +38,7 @@ namespace APT { class PackageContainerInterface; class VersionContainerInterface; -class CacheSetHelper { /*{{{*/ +class APT_PUBLIC CacheSetHelper { /*{{{*/ /** \class APT::CacheSetHelper Simple base class with a lot of virtual methods which can be overridden to alter the behavior or the output of the CacheSets. @@ -277,7 +277,7 @@ public: inline typename Container::value_type getType(void) const { return *this->_iter; } }; /*}}}*/ -class PackageContainerInterface { /*{{{*/ +class APT_PUBLIC PackageContainerInterface { /*{{{*/ /** \class PackageContainerInterface * Interface ensuring that all operations can be executed on the yet to @@ -332,7 +332,7 @@ private: void * const d; }; /*}}}*/ -template<class Container> class PackageContainer : public PackageContainerInterface {/*{{{*/ +template<class Container> class APT_PUBLIC PackageContainer : public PackageContainerInterface {/*{{{*/ /** \class APT::PackageContainer Simple wrapper around a container class like std::set to provide a similar @@ -682,7 +682,7 @@ typedef PackageContainer<std::list<pkgCache::PkgIterator> > PackageList; typedef PackageContainer<std::deque<pkgCache::PkgIterator> > PackageDeque; typedef PackageContainer<std::vector<pkgCache::PkgIterator> > PackageVector; -class VersionContainerInterface { /*{{{*/ +class APT_PUBLIC VersionContainerInterface { /*{{{*/ /** \class APT::VersionContainerInterface Same as APT::PackageContainerInterface, just for Versions */ @@ -787,7 +787,7 @@ protected: /*{{{*/ /*}}}*/ }; /*}}}*/ -template<class Container> class VersionContainer : public VersionContainerInterface {/*{{{*/ +template<class Container> class APT_PUBLIC VersionContainer : public VersionContainerInterface {/*{{{*/ /** \class APT::VersionContainer Simple wrapper around a container class like std::set to provide a similar |