]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/indexcopy.h
warning: unused parameter ‘foo’ [-Wunused-parameter]
[apt.git] / apt-pkg / indexcopy.h
index e3de1afd97f1f6454d1a20ec43bd8802fadbc164..e6a07a8878e744043f8dcc5c36ab9a11e0855556 100644 (file)
@@ -14,6 +14,9 @@
 #include <string>
 #include <stdio.h>
 
+#include <apt-pkg/gpgv.h>
+#include <apt-pkg/macros.h>
+
 #ifndef APT_8_CLEANER_HEADERS
 using std::string;
 using std::vector;
@@ -96,14 +99,10 @@ class SigVerify                                                             /*{{{*/
    bool CopyAndVerify(std::string CDROM,std::string Name,std::vector<std::string> &SigList,
                      std::vector<std::string> PkgList,std::vector<std::string> SrcList);
 
-   /** \brief generates and run the command to verify a file with gpgv */
-   static bool RunGPGV(std::string const &File, std::string const &FileOut,
+   __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut,
                       int const &statusfd, int fd[2]);
-   inline static bool RunGPGV(std::string const &File, std::string const &FileOut,
-                             int const &statusfd = -1) {
-      int fd[2];
-      return RunGPGV(File, FileOut, statusfd, fd);
-   };
+   __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut,
+                             int const &statusfd = -1);
 };
                                                                        /*}}}*/