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-item.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-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index d3f1bddf8..3be8a9c62 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -43,7 +43,7 @@ class pkgAcqMetaClearSig; class pkgAcqIndexMergeDiffs; class metaIndex; -class pkgAcquire::Item : public WeakPointable /*{{{*/ +class APT_PUBLIC pkgAcquire::Item : public WeakPointable /*{{{*/ /** \brief Represents the process by which a pkgAcquire object should * retrieve a file or a collection of files. * @@ -940,7 +940,7 @@ class APT_HIDDEN pkgAcqIndexDiffs : public pkgAcqBaseIndex * If the package file already exists in the cache, nothing will be * done. */ -class pkgAcqArchive : public pkgAcquire::Item +class APT_PUBLIC pkgAcqArchive : public pkgAcquire::Item { void * const d; @@ -1018,7 +1018,7 @@ class pkgAcqArchive : public pkgAcquire::Item * Downloads the changelog to a temporary file it will also remove again * while it is deconstructed or downloads it to a named location. */ -class pkgAcqChangelog : public pkgAcquire::Item +class APT_PUBLIC pkgAcqChangelog : public pkgAcquire::Item { class Private; Private * const d; @@ -1134,7 +1134,7 @@ private: * normally is a NOP, such as "file". If the download fails, the * partial file is renamed to get a ".FAILED" extension. */ -class pkgAcqFile : public pkgAcquire::Item +class APT_PUBLIC pkgAcqFile : public pkgAcquire::Item { void * const d; |