diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-08-13 19:15:19 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2020-02-26 20:34:54 +0100 |
commit | db678df196ccd8f9f6fb336706cf5701d1e53aa6 (patch) | |
tree | a7937ab9aba3556760f0040727066a84a41f0006 /apt-pkg/indexfile.h | |
parent | c38e0047d95305e5984e822f670055cde6aa5f6a (diff) |
apt-pkg: default visibility to hidden
Diffstat (limited to 'apt-pkg/indexfile.h')
-rw-r--r-- | apt-pkg/indexfile.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apt-pkg/indexfile.h b/apt-pkg/indexfile.h index dc44532fd..d0b045a9d 100644 --- a/apt-pkg/indexfile.h +++ b/apt-pkg/indexfile.h @@ -34,7 +34,7 @@ class pkgCacheGenerator; class pkgCacheListParser; class OpProgress; -class IndexTarget /*{{{*/ +class APT_PUBLIC IndexTarget /*{{{*/ /** \brief Information about an index file. */ { public: @@ -98,7 +98,7 @@ class IndexTarget /*{{{*/ }; /*}}}*/ -class pkgIndexFile +class APT_PUBLIC pkgIndexFile { void * const d; protected: @@ -106,7 +106,7 @@ class pkgIndexFile public: - class Type + class APT_PUBLIC Type { public: @@ -150,7 +150,7 @@ class pkgIndexFile virtual ~pkgIndexFile(); }; -class pkgDebianIndexFile : public pkgIndexFile +class APT_PUBLIC pkgDebianIndexFile : public pkgIndexFile { protected: virtual std::string IndexFileName() const = 0; @@ -169,7 +169,7 @@ public: virtual ~pkgDebianIndexFile(); }; -class pkgDebianIndexTargetFile : public pkgDebianIndexFile +class APT_PUBLIC pkgDebianIndexTargetFile : public pkgDebianIndexFile { void * const d; protected: @@ -192,7 +192,7 @@ public: virtual ~pkgDebianIndexTargetFile(); }; -class pkgDebianIndexRealFile : public pkgDebianIndexFile +class APT_PUBLIC pkgDebianIndexRealFile : public pkgDebianIndexFile { void * const d; protected: |