summaryrefslogtreecommitdiff
path: root/apt-pkg/srcrecords.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:54:22 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:54:22 +0000
commit727f18afe9c2eec15ee446cb667d9561644b5bf6 (patch)
tree7b8f7e3cd17bd725d4c47e22384400c002ca3982 /apt-pkg/srcrecords.h
parent140fd43fa632739af061834a6c1b7ee0f73a35b7 (diff)
Daniel Jacobowitz's gcc 2.95 C++ patch
Author: jgg Date: 1999-07-20 05:53:32 GMT Daniel Jacobowitz's gcc 2.95 C++ patch
Diffstat (limited to 'apt-pkg/srcrecords.h')
-rw-r--r--apt-pkg/srcrecords.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/srcrecords.h b/apt-pkg/srcrecords.h
index c7ff17fc2..17297a60e 100644
--- a/apt-pkg/srcrecords.h
+++ b/apt-pkg/srcrecords.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: srcrecords.h,v 1.3 1999/04/07 05:30:18 jgg Exp $
+// $Id: srcrecords.h,v 1.4 1999/07/20 05:53:33 jgg Exp $
/* ######################################################################
Source Package Records - Allows access to source package records
@@ -52,7 +52,7 @@ class pkgSrcRecords
virtual string Maintainer() = 0;
virtual string Section() = 0;
virtual const char **Binaries() = 0;
- virtual bool Files(vector<File> &F) = 0;
+ virtual bool Files(vector<pkgSrcRecords::File> &F) = 0;
Parser(FileFd *File,pkgSourceList::const_iterator SrcItem) : File(File),
SrcItem(SrcItem) {};