]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/fileutl.h
remove the ABI compatible stub for GetListOfFilesInDir
[apt.git] / apt-pkg / contrib / fileutl.h
index 041aa33096c94d18a936420fcc7d1cd277682bbe..351d53c5e089abeb197357ee6454b593ffc3d59d 100644 (file)
 #ifndef PKGLIB_FILEUTL_H
 #define PKGLIB_FILEUTL_H
 
-#ifdef __GNUG__
-#pragma interface "apt-pkg/fileutl.h"
-#endif 
 
 #include <string>
+#include <vector>
 
 using std::string;
 
@@ -80,9 +78,14 @@ class FileFd
    virtual ~FileFd();
 };
 
+bool RunScripts(const char *Cnf);
 bool CopyFile(FileFd &From,FileFd &To);
 int GetLock(string File,bool Errors = true);
 bool FileExists(string File);
+std::vector<string> GetListOfFilesInDir(string const &Dir, string const &Ext,
+                                       bool const &SortList, bool const &AllowNoExt=false);
+std::vector<string> GetListOfFilesInDir(string const &Dir, std::vector<string> const &Ext,
+                                       bool const &SortList);
 string SafeGetCWD();
 void SetCloseExec(int Fd,bool Close);
 void SetNonBlock(int Fd,bool Block);