diff options
author | Julian Andres Klode <jak@debian.org> | 2010-03-12 15:28:24 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2010-03-12 15:28:24 +0100 |
commit | d59a67ff100ef7006376a14ceef833a460c2f404 (patch) | |
tree | 73ef7831cc7c3dbb8fa813bda43f8adcaaec9f3f /apt-inst | |
parent | f23e1e940214c7abbf87c28bc71a5d37d117aa57 (diff) |
apt-inst/contrib/arfile.h: Add public ARArchive::Members() which returns the list of members.
Diffstat (limited to 'apt-inst')
-rw-r--r-- | apt-inst/contrib/arfile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-inst/contrib/arfile.h b/apt-inst/contrib/arfile.h index 96e18bc60..7f6c68302 100644 --- a/apt-inst/contrib/arfile.h +++ b/apt-inst/contrib/arfile.h @@ -39,6 +39,7 @@ class ARArchive // Locate a member by name const Member *FindMember(const char *Name) const; + inline Member *Members() { return List; } ARArchive(FileFd &File); ~ARArchive(); |