summaryrefslogtreecommitdiff
path: root/apt-pkg/cacheset.h
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2019-08-13 19:15:19 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2020-02-26 20:34:54 +0100
commitdb678df196ccd8f9f6fb336706cf5701d1e53aa6 (patch)
treea7937ab9aba3556760f0040727066a84a41f0006 /apt-pkg/cacheset.h
parentc38e0047d95305e5984e822f670055cde6aa5f6a (diff)
apt-pkg: default visibility to hidden
Diffstat (limited to 'apt-pkg/cacheset.h')
-rw-r--r--apt-pkg/cacheset.h10
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