]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/configuration.h
* cmdline/apt-get.cc:
[apt.git] / apt-pkg / contrib / configuration.h
index 0d4078dab0144824f90ace28a769b79b1154d61d..e2da83f5ba7b67da10cedac50d1e212a0b0e6ee2 100644 (file)
 #ifndef PKGLIB_CONFIGURATION_H
 #define PKGLIB_CONFIGURATION_H
 
-#ifdef __GNUG__
-#pragma interface "apt-pkg/configuration.h"
-#endif 
+
 
 #include <string>
+#include <vector>
 #include <iostream>
 
 using std::string;
@@ -72,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;