diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-01-27 21:59:23 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-01-27 21:59:23 +0100 |
commit | 697a1d8ab6744181355cda92b4de01b996c1bc1d (patch) | |
tree | bd9d4b3a5d22c92be7cd5fbebf4ed7c273ef11d5 /apt-pkg/deb/dpkgpm.h | |
parent | b8f90d97faa461380f7aa2d2368f66b8b25b2356 (diff) |
apt-pkg/deb/dpkgpm.{cc,h}: convert to use dpointers
Diffstat (limited to 'apt-pkg/deb/dpkgpm.h')
-rw-r--r-- | apt-pkg/deb/dpkgpm.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/apt-pkg/deb/dpkgpm.h b/apt-pkg/deb/dpkgpm.h index b7b5a6def..ddf9485c7 100644 --- a/apt-pkg/deb/dpkgpm.h +++ b/apt-pkg/deb/dpkgpm.h @@ -18,19 +18,12 @@ using std::vector; using std::map; +class pkgDPkgPMPrivate; class pkgDPkgPM : public pkgPackageManager { private: - - bool stdin_is_dev_null; - - // the buffer we use for the dpkg status-fd reading - char dpkgbuf[1024]; - int dpkgbuf_pos; - FILE *term_out; - FILE *history_out; - string dpkg_error; + pkgDPkgPMPrivate *d; /** \brief record the disappear action and handle accordingly |