diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-04-26 00:00:51 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-04-28 09:59:33 +0200 |
commit | 0d29b9d4368284782862c7b507c47002b79ddb27 (patch) | |
tree | bcf0fa5d55cce7eba85f20235648d1728b104924 /apt-pkg/sourcelist.h | |
parent | a298a1dc595c548e6c10b48b8e69d987e5be1c42 (diff) |
WIP local deb install
Diffstat (limited to 'apt-pkg/sourcelist.h')
-rw-r--r-- | apt-pkg/sourcelist.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-pkg/sourcelist.h b/apt-pkg/sourcelist.h index 9df0c1d74..4943dd32a 100644 --- a/apt-pkg/sourcelist.h +++ b/apt-pkg/sourcelist.h @@ -116,6 +116,11 @@ class pkgSourceList // query last-modified time time_t GetLastModifiedTime(); + // Add custom metaIndex (e.g. local files) + void Add(metaIndex *mi) { + SrcList.push_back(mi); + } + pkgSourceList(); pkgSourceList(std::string File); ~pkgSourceList(); |