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/acquire.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/acquire.h')
-rw-r--r-- | apt-pkg/acquire.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apt-pkg/acquire.h b/apt-pkg/acquire.h index c71c01e2f..8cb4d2532 100644 --- a/apt-pkg/acquire.h +++ b/apt-pkg/acquire.h @@ -89,7 +89,7 @@ class metaIndex; * * \todo Why all the protected data items and methods? */ -class pkgAcquire +class APT_PUBLIC pkgAcquire { private: /** \brief FD of the Lock file we acquire in Setup (if any) */ @@ -372,7 +372,7 @@ class pkgAcquire * * An item may have several associated ItemDescs over its lifetime. */ -struct pkgAcquire::ItemDesc : public WeakPointable +struct APT_PUBLIC pkgAcquire::ItemDesc : public WeakPointable { /** \brief URI from which to download this item. */ std::string URI; @@ -388,7 +388,7 @@ struct pkgAcquire::ItemDesc : public WeakPointable * * \todo Why so many protected values? */ -class pkgAcquire::Queue +class APT_PUBLIC pkgAcquire::Queue { friend class pkgAcquire; friend class pkgAcquire::UriIterator; @@ -586,7 +586,7 @@ class pkgAcquire::Queue }; /*}}}*/ /** \brief Iterates over all the URIs being fetched by a pkgAcquire object. {{{*/ -class pkgAcquire::UriIterator +class APT_PUBLIC pkgAcquire::UriIterator { /** \brief dpointer placeholder (for later in case we need it) */ void * const d; @@ -623,7 +623,7 @@ class pkgAcquire::UriIterator }; /*}}}*/ /** \brief Information about the properties of a single acquire method. {{{*/ -struct pkgAcquire::MethodConfig +struct APT_PUBLIC pkgAcquire::MethodConfig { class Private; /** \brief dpointer placeholder (for later in case we need it) */ @@ -688,7 +688,7 @@ struct pkgAcquire::MethodConfig * * \todo Why protected members? */ -class pkgAcquireStatus +class APT_PUBLIC pkgAcquireStatus { /** \brief dpointer placeholder (for later in case we need it) */ void * const d; |