diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:44 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:44 +0000 |
commit | c5ccf1750dd00e8c4374162b302a0946f7fe3a96 (patch) | |
tree | e8a3a2416286e149fd645bc71f3c6447d050d8df /apt-pkg/acquire-item.h | |
parent | 8e34bee58db2ca432ff24d241c85c3e6eb14aecc (diff) |
Bug fixes, new major version
Author: jgg
Date: 2000-01-27 04:15:09 GMT
Bug fixes, new major version
Diffstat (limited to 'apt-pkg/acquire-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 459d7d26d..bf1a50e75 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-item.h,v 1.23 2000/01/17 07:11:49 jgg Exp $ +// $Id: acquire-item.h,v 1.24 2000/01/27 04:15:09 jgg Exp $ /* ###################################################################### Acquire Item - Item to acquire @@ -71,7 +71,8 @@ class pkgAcquire::Item // Inquire functions virtual string MD5Sum() {return string();}; - + pkgAcquire *GetOwner() {return Owner;}; + Item(pkgAcquire *Owner); virtual ~Item(); }; |