]> git.saurik.com Git - apt.git/blobdiff - methods/rsh.h
show or-groups in not-installed recommends and suggests lists
[apt.git] / methods / rsh.h
index d7efa3f065dee3d9d180dd0fba1d49c467b6ee54..34492971c32f87b3eecfff72b7b421a6b0d576df 100644 (file)
@@ -11,6 +11,8 @@
 #define APT_RSH_H
 
 #include <string>
+#include <time.h>
+
 #include <apt-pkg/strutl.h>
 
 class Hashes;
@@ -54,15 +56,15 @@ class RSHConn
 
 class RSHMethod : public pkgAcqMethod
 {
-   virtual bool Fetch(FetchItem *Itm);
-   virtual bool Configuration(std::string Message);
+   virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE;
+   virtual bool Configuration(std::string Message) APT_OVERRIDE;
 
    RSHConn *Server;
 
    static std::string FailFile;
    static int FailFd;
    static time_t FailTime;
-   static void SigTerm(int);
+   static APT_NORETURN void SigTerm(int);
 
    public: