diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-23 17:11:41 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-09-23 17:11:41 +0200 |
commit | f7d6459db697c6dbba8e5d787a817e7721bfb577 (patch) | |
tree | df35974a4902758ad2e9e03720a463bc13bdefb4 /apt-pkg/contrib/configuration.h | |
parent | 73b1d4847befc0d3042b6689484e0f74667aba6e (diff) | |
parent | a874991b8549397fb26c47bbf229854556a3fb60 (diff) |
merged from david, many thanks
Diffstat (limited to 'apt-pkg/contrib/configuration.h')
-rw-r--r-- | apt-pkg/contrib/configuration.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-pkg/contrib/configuration.h b/apt-pkg/contrib/configuration.h index 2534692a3..e2da83f5b 100644 --- a/apt-pkg/contrib/configuration.h +++ b/apt-pkg/contrib/configuration.h @@ -31,6 +31,7 @@ #include <string> +#include <vector> #include <iostream> using std::string; @@ -70,6 +71,8 @@ class Configuration string Find(const string Name,const char *Default = 0) const {return Find(Name.c_str(),Default);}; string FindFile(const char *Name,const char *Default = 0) const; string FindDir(const char *Name,const char *Default = 0) const; + std::vector<string> FindVector(const string &Name) const; + std::vector<string> FindVector(const char *Name) const; int FindI(const char *Name,int Default = 0) const; int FindI(const string Name,int Default = 0) const {return FindI(Name.c_str(),Default);}; bool FindB(const char *Name,bool Default = false) const; |